Pip Install Pandas: Installing Dependencies Error

Pip install pandas: installing dependencies error

I met the same error on Python3.4.

And the root cause of this error is that

"pandas 0.21-0.22 no longer supports Python 3.4"

See more about this issue:

https://github.com/pandas-dev/pandas/issues/20775

Problem with installing pandas for Python 3.4

You get the error "Double requirement given: numpy ..."
The reason for this error is that pandas 0.21-0.22 no longer supports Python 3.4, and thus no longer distributes binary wheels for Python 3.4. Therefore, pip tries to install pandas from source, and this is what now started to fail with Pip version 10.
You can check your python version.

$ python --version
Python 3.4.3

Solution: Install python 3.5

sudo add-apt-repository ppa:deadsnakes/ppa
sudo apt-get update
sudo apt-get install python3.5


After you install python 3.5, you can install pandas successfully in a virtual environment(with Python 3.5).

Unable to install pandas for python

Actually, Python 3.10 was enabled for pandas a few days ago. However, the last release (1.3.3) was published on September, 12.

You have to wait for a new release of Pandas to install it using Python 3.10. Until that happens, you can stay with a lower version of Python (like some users suggested).

Can't pip install pandas... error from a subprocess

Remove the NumPy then try to install pandas again.

pip uninstall package_name



Related Topics



Leave a reply



Submit