Questions tagged [python3]
The python3 tag has no summary.
411 questions
0 votes
1 answer
132 views
Python>3.9 install on Ubuntu 20.04 focal
deadsnakes recently removed support for Ubuntu 20.04: https://github.com/deadsnakes/py3.11/commit/54c42edda82a91620e5c26b5e27eeda1527e2cff So, currently, trying to install any version of python newer ...
0 votes
0 answers
5 views
NetCDF4 created with Xarray does contain unexpected dimensions
I have a NetCDF question: I was creating a NetCDF4_classic file via Python's xarray package: import xarray as xr ds = xr.Dataset( data_vars={ "Data1": (("time"...
0 votes
0 answers
39 views
org.freedesktop.IBus interface not found in the system after installing ibus and daemon start
My system is Kali 2022. I am new to linux and trying to interact with IBus using a python script. I have done the following things: Installed ibus using sudo apt install ibus Started ibus-daemon ...
0 votes
0 answers
57 views
php script: shell_exec('nohup /usr/bin/python3 -u /location/script.py > /location/script.log & : Script terminates after 5 seconds but should not
I have a PHP Script with the command shell_exec('nohup /usr/bin/python3 -u /location/script.py > /location/script.log &'); This PHP Script is called via ajax, the script runs, logfile is ...
0 votes
1 answer
655 views
How to upgrade numpy? | ImportError: Matplotlib requires numpy>=1.23; you have 1.21.5
I need to run matplotlib. However, it requires an up-to-date version of numpy. How can I manually update my numpy installation? $ pip install numpy --upgrade Defaulting to user installation because ...
-1 votes
1 answer
84 views
How do I install python on cpanel on linux
I am trying to deploy a linux executable from Delphi. The host has cpanel I have installed PAServer However I get this error about symlink target directory does not exist Unable to start LLDB kernel: ...
0 votes
2 answers
6k views
Errno 13 Permission denied when pip upgrade or pip install
I have set up my virtual ennvironment and i'm trying to install the package but i keep on running into this error : ERROR: Could not install packages due to an OSError: [Errno 13] Permission denied: '/...
2 votes
1 answer
1k views
PATH on Mac not working for Python
I am trying to run a Python program from my command line on my Mac. (in this case: python3 Hello.py). For the life of me, I can’t get it to consider the PATH where the program is located. This is the ...