1,496 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
61
views
raspberry pi zero installs old version of pymodbus
i have a raspberry Pi Zero V.1. I have pymodbus installed but struggle to get the latest version. On pypi.org the latest version is 3.11.4. The version on my pi is 3.0.0-7
If i type (after trying: ...
1
vote
0
answers
72
views
Docker build fails with random "Hash Sum mismatch" errors on macOS
I'm trying to build a docker image on my Mac, but it fails at installing some linux deps. I think it's all pretty standard, and it works for my colleagues, on CI/CD (details below)
Relevant part:
FROM ...
1
vote
1
answer
90
views
python virtualenv without losing apt-installed modules
How can I create a python Virtual ENVironment (venv) such that the new venv has all of the python modules that are already installed on my system (with apt)?
π Note: It's much more secure to install ...
4
votes
1
answer
952
views
lando rebuild rendering unknown manifest error
I have a Drupal project with lando based local development. my lando.base.yml looks like:
Services:
database:
type: mysql:8.4
creds:
user: drupal
password: xxx
database: ...
Rick's user avatar
- 1,619
1
vote
1
answer
351
views
How can I use Python packages installed with apt-get in a Python interpreter installed with pyenv?
I need help to install a package using apt install in the Raspberry Pi using the Python version I installed using pyenv. I already tried using pip, but the installation fails. The specific package I ...
0
votes
1
answer
343
views
Debian APT: Pinning based on repository location as well as release name
I would like to disable automatically installing packages from this particular source:
$ cat /etc/apt/sources.list.d/unstable.list
deb http://deb.debian.org/debian unstable main contrib non-free non-...
0
votes
1
answer
323
views
How do you install debian packages from a GitLab package registry using a CI job token?
I followed the instructions to set up a Debian package registry for my GitLab project.
βοΈ I enabled the API
βοΈ I created a distribution
βοΈ I uploaded packages
Now I have a CI job that needs to pull ...
2
votes
3
answers
10k
views
Python 3.13 Install on Standard Ubuntu Causing Unmet Dependencies Error
I have a standard Ubuntu remote server from HostWinds that is set up per their normal settings, Ubuntu 22.04.5 LTS. I added MySQL, but otherwise I have made very few changes except I installed Python ...
2
votes
1
answer
212
views
Fresh install of pythonpy gives SyntaxWarnings
I just freshly installed pythonpy. However, the package gives SyntaxWarnings during installation:
$ sudo apt install pythonpy
[sudo] password for melvio:
Reading package lists... Done
Building ...
1
vote
2
answers
961
views
how to uninstall specific opencv
I am getting an error on running cv2.imshow()
cv2.imshow("Image", image)
cv2.error: OpenCV(4.9.0) /io/opencv/modules/highgui/src/window.cpp:1272: error: (-2:Unspecified error) The function ...
-2
votes
1
answer
267
views
Is it possible to tell apt to stop prompting about certain missing dependencies? [closed]
I have a scanner that only works when downloading the .deb from the manufacturer (Brother) and installing with:
sudo dpkg -i --force-all libsane-dsseries_1.0.5-1_amd64.deb
--force-all is required. ...
2
votes
2
answers
201
views
No such file or directory for QList
When I tried compiling this program
/*
* Copyright (c) 2006-2007, Johan Thelin
*
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* ...
0
votes
1
answer
77
views
Raspbian/Debian install Docker - apt https error with Docker repository [closed]
Need to install up to date Docker on my Raspberry Pi 3 B+
Can do apt install docker.io but it extremely outdated.
Follow official Docker instruction. After I add repository to Apt sources sudo apt-get ...
1
vote
1
answer
478
views
Can't install packages from Debian local repository in JFrog Artifactory: APT says unable to locate package [closed]
I am trying to set up a local repository for binary Debian packages (.deb files) in JFrog's Artifactory to host some internal Debian packages of our company.
On my PC I can install the packages ...
-1
votes
1
answer
186
views
How to automate prompts during apt upgrades in bash? [closed]
I am running several Raspberry Pi 4 on Bookworm. On these, I have a bash file as follows:
sudo apt -y update
read -t 600 -p "Pausing 10 minutes between Update and Upgrade"
sudo apt -y ...
Chiwda's user avatar
- 1,397