Skip to content
Advertisement

Tag: pip

how to download and install wxPython wheel from github for Python 3.10 to overcome disutils and setuptools problem

Python 3.10 has a problem with disutils and setuptools>=58 in that wxPython will not run in conjunction with packages Gooey/DEAP/NEMO. I have been told there is a wxPython wheel which gets round those problems https://github.com/oleksis/youtube-dl-gui/releases/tag/v1.8.2 but i cannot get the command syntax to work for some relationship between: “git+”, #egg”, “wxPython” I tried pip install -e git+https://github.com/oleksis/youtube-dl-gui/releases/tag/v1.8.2/wxPython-4.1.2a1-cp310-cp310-win_amd64.whl#egg=wxPython and got pip

Trying to resolve ModuleNotFoundError: No module named

Trying to install third party modules on my mac using pip and I am getting this error (Using IDLE as the Python shell): (Have tried multiple modules and all return the same error) I have installed the modules using: I can see that it has installed into the directory: Ive tried going through several of the posts posted on StackOverflow

Cannot install Pyinstaller under Wine on Kali Linux

I am getting syntax error ERROR: Command errored out with exit status 1 … while trying to install Pyinstaller under Wine on Kali Linux in a virtual environment I’m getting an error as follows: I have python2 version 2.7.18 and python version 3.9.10 installed and pip 22.1.2 from /usr/local/lib/python3.9/dist-packages/pip. I have tried uninstalling and reinstalling Python, Wine but the error

problem of installing xfoil python package

I got a problem of installing xfoil python package Collecting xfoil Using cached xfoil-1.1.1.tar.gz (12 kB) Preparing metadata (setup.py) … done Requirement already satisfied: numpy in c:usersxxxdesktopcurvevenvlibsite-packages (from xfoil) (1.22.4) Building wheels for collected packages: xfoil Building wheel for xfoil (setup.py) … error error: subprocess-exited-with-error How can I deal with it? Thank you very much Answer The problem appears to

pip install python-qpid-proton: how to fix errors on windows?

While running pip install python-qpid-proton I got the following errors: error: Microsoft Visual C++ 14.0 or greater is required. I fixed this by installing Visual Studio Build Tools 2022 and Visual Studio Professional 2022 fatal error C1083: Cannot open compiler generated file This error appears apparently if the path is too long. Therefore I changed the path of the Temp

How to use pip for Python3.10 instead of Python 3.9?

I would like to use the Python toolkit Neurokit2 (https://neurokit2.readthedocs.io/en/latest/index.html) on Mac OS 12.3.1 in Python 3.10.4. Python 3.10.4 was installed via homebrew. Python 3.9 was also installed via homebrew because of dependencies for jupyterlab and scipy. When installing Neurokit2 via pip3 install neurokit2 pip automatically installs the toolkit only for python 3.9. The installation is located in harddriveopthomebrewlibpython3.9site-packages with

Advertisement