Skip to content

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 …

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 av…

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 misse…

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’ w…

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: “…

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), b…

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 abov…