NumPy issue during install #560
Answered
by
rgommers
philipnenni
asked this question in
Q&A
-
Can I get some help on resolving this issue? thanks in advance I'm a python newbie. ERROR: Cannot install numpy==1.21.6 and numpy==1.22.3 because these package versions have conflicting dependencies.
|
Beta Was this translation helpful? Give feedback.
Answered by
rgommers
Oct 4, 2022
Replies: 1 comment 7 replies
-
It would be helpful to say what command you ran to get that error message @philipnenni |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Using cached scipy-1.9.1.tar.gz
indicates thatpip
is trying to build SciPy from source. What is happening here is that there's no SciPy wheel for 32-bit Windows at https://pypi.org/project/scipy/1.9.1/#files.You're not going to be able to resolve that easily. If you are new to Python and can start over, the best thing is to get rid of your 32-bit install completely, and install a 64-bit Python. If you don't know which one, I recommend the 64-bit Windows installer of Anaconda at https://www.anaconda.com/products/distribution. It already comes with NumPy, SciPy, Numba etc. pre-installed (maybe even sparse, no sure). Otherwise, if you prefer the python.org installer, also there 64-bit is r…