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?
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
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.I was corresponding with some ppl at python.org and they told me to use
py -3.5 -m pip install SomePackage
This works.
python3.4 -m pip install SomePackage should work. More information is here docs.python.org/3/installing