How to install NumPy for Python 3.6

I am using Python 3.6b3 for a long running project, developing on Windows. For this project I also need NumPy. I’ve tried Python36 -m pip install numpy, but it seems that pip is not yet in the beta. What’s the best way to install NumPy for Python 3.6b3? [EDIT: Added installation log, after using ensurepip]

How to use cmp() in Python 3?

As mentioned in the comments, cmp doesn’t exist in Python 3. If you really want it, you could define it yourself: which is taken from the original What’s New In Python 3.0. It’s pretty rare — though not unheard of — that it’s really needed, though, so you might want to think about whether it’s … Read more