Questions tagged [python]
Python is an interpreted programming language that is often, but not solely, used as a scripting language. A version of Python is included by default on all Ubuntu distributions.
5,252 questions
-2
votes
0
answers
49
views
I'm getting python segmentation fault (core dumped) randomly
It's my requirements.txt
python = ">=3.11,<3.14"
starlette = ">=0.37.2"
pydantic = ">=2"
numpy = ">=1"
pandas = ">=2.2.3"
requests = ...
0
votes
1
answer
117
views
Wayland in 26.04, how to convert script from X11 to Wayland?
I have a script I use to allow me to plug in a second keyboard and change what keys are sent when pressed. I use it to send key combinations that execute macros in my audio editing software. It's ...
1
vote
1
answer
99
views
Ibus-table error "Permission denied: '/home/username/.local'"
I have set up Ubuntu on ZFS under LUKS as described here. However, I have used Ubuntu 24.04 instead of 22.10. This seems to work just fine, except for one thing: Directly after installation, on the ...
3
votes
2
answers
84
views
Ubuntu 24.04 - HID works only with sudo despite udev rule
INFO:
Linux Ubuntu 24.04.4 LTS
Python - lib: hid
SteelSeries Nova 5
I made a program that communicates with my headphones through HID, but I can only run it with sudo. I tried changing the device ...
0
votes
0
answers
48
views
U24 Notepad++ snap: bulk add python scripts to scripts folder
I am moving my Windows Notepad++ python scripts that run under the plugin (https://npppythonscript.sourceforge.net/) to my Ubuntu 24 machine that uses the NP++ snap (under Wine).
It looks like I can't ...
0
votes
1
answer
79
views
How to run python script in Ubuntu using cron
I need to auto run the python script (having some print statements) in Ubuntu upon every restart. I have typed crontab -e that opens a file in nano. I just have written the following line at the end ...
0
votes
0
answers
96
views
Installation failed due to Python gobject/dbus not being allowed
I've been trying to install a plugin for my HP LaserJet M140we to get the scanner to work on my Cinnamon, but I have run into the issue of Python gobject/dbus is not being allowed to be installed ...
0
votes
1
answer
359
views
python: "AttributeError: module 'ssl' has no attribute 'wrap_socket'" when calling mysql.connector.connect()
The example code in W3Schools Tryit Editor works fine in my Chrome browser, printing:
<mysql.connector.connection.MySQLConnection object ar 0x016645F0>
But when I try a real example:
$ cat ./...
0
votes
0
answers
193
views
SSLCertVerificationError: "Hostname mismatch, certificate is not valid for 'api.openml.org'" when using fetch_openml (conda env)
I'm on Linux using a conda environment (ML) and I get a SSL certificate verification error when trying to load a dataset from OpenML with sklearn.datasets.fetch_openml. I already installed certifi ...
1
vote
1
answer
132
views
Issue with Debian package update & migration
I’m working on a Debian package migration and could use input on the upgrade and packaging process.
Background:
Program recently upgraded from version 2.X.X to 3.X.X.
With the upgrade, renamed the ...
1
vote
1
answer
438
views
Cannot install python3-venv or python3-full [duplicate]
I'm trying to install python3-venv on Ubuntu 24.04.3 noble but getting the error:
The following packages have unmet dependencies:
python3-venv : Depends: python3.12-venv (>= 3.12.3-0~) but it ...
0
votes
1
answer
327
views
Installing bt-dualboot
I have been having problems with bluetooth connection while dualbooting. I found out that this project (https://github.com/x2es/bt-dualboot) is solving the issue.
When I run:
sudo pip install bt-...
2
votes
1
answer
193
views
How can I generate a full screen semi transparent window in Ubuntu?
At night, my fully dimmed screen is still too bright. I used to (in 22.04) run a small python script to generate a black background window with 0.5 transparency. This reduced the light even further. ...
0
votes
1
answer
236
views
How to use/configure drivers installed with pipx? Ubuntu 24.04
I installed ds4drv drivers using pipx, but I don't know how to configure them.
ds4drv: command not found.
Apparently pipx installed ds4drv to /root/.local/share/pipx/venvs/ds4drv
Answer suggested to ...
5
votes
1
answer
1k
views
How to install Python packages in Ubuntu 24.04.3?
My purpose is to install ds4drv drivers.
pip install ds4drv returns the following error:
error: externally-managed-environment
× This environment is externally managed
╰─> To install Python ...