You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a case where I wrote a requirements file to install pandas. Included in the requirements file is an entry to install numpy alongside. The installation fails because pandas is trying to do an import (in its setup.py) of numpy which isn't installed yet.
Due to the fact that either setuptools or distribute is used for the installation of pandas, I think it's safe to trust that setuptools/distribute will ensure that the necessary version of numpy exists before installing pandas.
The text was updated successfully, but these errors were encountered:
takinbo
added a commit
to takinbo/pandas
that referenced
this issue
Jan 23, 2013
I have a case where I wrote a requirements file to install pandas. Included in the requirements file is an entry to install numpy alongside. The installation fails because pandas is trying to do an import (in its setup.py) of numpy which isn't installed yet.
Due to the fact that either setuptools or distribute is used for the installation of pandas, I think it's safe to trust that setuptools/distribute will ensure that the necessary version of numpy exists before installing pandas.
The text was updated successfully, but these errors were encountered: