Skip to content
Advertisement

Tag: pip

Why is Pip not working after upgrading Python to 3.8?

I was working on a 2D game using python 3.6.8 and pip3. Everything was working fine. Then i downloaded and installed python 3.8. Now, pip won’t work at all. These are the errors I am getting when running “pip3 install arcade”: PLEASE HELP, I would like to continue making my game. Answer The error is pretty clear. You’ve got a

Failure to install Sybase package on Windows 10 / Python 3.6

I’m looking to connect to a Sybase db in PyCharm. I’m getting the following errors when installing from available packages and the terminal: Has anyone succesfully installed on Win10? Peter Answer I had the same challenge. I resolved it by using a trial version of the Devart ODBC Driver for ASE available here https://www.devart.com/odbc/ase/download.html After the driver is installed, it

ModuleNotFoundError: No module named ‘sympy’

I’m on MacOSX Mojave 10.14.6 on a MacBook Pro 2015. So I pip installed sympy, right? I head over to my shell, run python3, and do: Just to be sure, I pip installed again just to make sure. My pip list also includes sympy as sympy 1.4. What’s wrong here? Is there another setup step I’ve missed? Answer Apparently all

Fixing PATH for Python libraries using Bash

I am attempting to install some Python libraries by executing variations of the following command in Bash: I installed Python3 using Homebrew. I then get variations of the following message each time: WARNING: The scripts f2py, f2py3 and f2py3.7 are installed in ‘/Users/x/Library/Python/3.7/bin’ which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress

pip command not found in virtual env even if file is there

These are the steps I did: Created a virtual env using python3 -m venv myvenv Activate the virtual env using myvenv/bin/activate Run python -m pip install –upgrade pip, to upgrade pip. run pip install -r requirements.txt It throws an error: bash: /Users/vince/Django Projects/test/myvenv/bin/pip: “/Users/vince/Django: bad interpreter: No such file or directory When I tried using pip2 install, it works, why

pytest requires Python ‘>=3.5’ but the running Python is 2.7.10

I’m trying to install pytest using pip but running into this error: Pretty sure pytest is compatible with python 2. Any reason why I am not able to install it on my machine? As you can see in the error, I am running python 2.7.10 and do not have issue installing other packages. Answer Quoting the changelog: The 4.6.X series

pipenv not consistant from local to server

Im using pipenv to manage my dependencies, I have the following command working fine on my local machine: pipenv install –dev but when I run it on the server I get the following error: I have handled pipenv errors before and most were pretty reasonable (clashes between dependency and sub-dependecies), but this one makes less sense to me as I

Why am I not able to install lmdb using pip?

I’m following the turorial found here: https://realpython.com/storing-images-in-python/. The first few steps in the tutorial work well; however, when I get to the step I get more than 100 errors, and the installer gives up. I’m wondering how to correct this problem. My entry of the step shown above looks like this in the Pycharm terminal: After entering the pip command

Advertisement