Reputation: 5228
I've been trying to install numpy and pandas for python 3.5 but it keeps telling me that I have an issue.
Could it be because numpy can't run on python 3.5 yet?
Upvotes: 0
Views: 4539
Reputation: 5228
I was corresponding with some ppl at python.org and they told me to use
py -3.5 -m pip install SomePackage
This works.
Upvotes: 1
Reputation:
This is as a result of a Numpy distutils bug (which is already fixed in the development branch).
If you have brew:
brew install homebrew/python/numpy --with-python3
If you don't:
pip3 install git+https://github.com/numpy/numpy.git
Upvotes: 2