12-07-2017, 03:09 PM
Here's what I've just done:
- From this page: https://stackoverflow.com/questions/4750...on-windows download get-pip.py and put it into your GIMP Python folder (C:\Program Files\GIMP-2.8.22\Python)
- From a Windows Command Prompt Window cd to the GIMP Python folder: cd C:\Program Files\GIMP-2.8.22\Python
- Run the get-pip.py script using the GIMP version of Python: .\python.exe get-pip.py
- You now have pip installed in the GIMP version of Python
- Now you can run the command to download and install numpy: .\python.exe -m pip install --user numpy
- Start GIMP
- In the Python Console (Filters>>Python-Fu>>Console) import numpy then dir(numpy) you should get the screen-shot shown by Ofnuts.