0

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?

2 Answers 2

2

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
Sign up to request clarification or add additional context in comments.

4 Comments

I tried typing this into the cmd. But it nothing happens. It just stays there and do nothing. How else can i install it?
Or should I just wait for numpy 1.10.2 to be released before trying to install it??
@jakewong apologies, I do not know why I automatically assumed you used a Linux/Unix based system. The second command should work on Windows. The first is Mac specific.
I tried pip3 install git+https://github.com/numpy/numpy.git in cmd, but it doesnt collect numpy. Not sure if there is anything wrong during my python installation, but when I use cmd to pip install SomePacket nothing happens. No additional message or anything.
1

I was corresponding with some ppl at python.org and they told me to use

py -3.5 -m pip install SomePackage

This works.

1 Comment

This works for Windows. For Linux this command python3.4 -m pip install SomePackage should work. More information is here docs.python.org/3/installing

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.