I want to install some packages like numpy or opencv on Windows 7 32bit and nao humanoid robot. But I don't know how to install them without pip. Is there a way to install packages like copy-paste into sites-packages folder?
Thanks in advance
I want to install some packages like numpy or opencv on Windows 7 32bit and nao humanoid robot. But I don't know how to install them without pip. Is there a way to install packages like copy-paste into sites-packages folder?
Thanks in advance
Don't. Just get pip. It'll make your life, and the lives of any future answerers of your Python questions on this site, much easier. Here's how on Windows:
Download the installer script from https://bootstrap.pypa.io/get-pip.py
Save it somewhere as get-pip.py
Open a command line and navigate to the script you just downloaded
Run it as python get-pip.py
Anything else you try to do is just going to cause you more trouble.
If you really want to, you can just copy paste packages into the site-packages folder, and it should just work. But don't. For opencv in particular you're going to run into all kinds of trouble.
You can find your site-packages folder by running the following in a prompt:
python -c "import sys; print([p for p in sys.path if 'site-packages' in p])"