Install numpy python 3.7

Hi,

Installed python 3.7 via this tutorial and installed fine https://linuxize.com/post/how-to-install-python-3-7-on-debian-9/
I now need to install numpy for 3.7 but running into difficulty.

I ran sudo apt-get install python3-numpy but think this is for python 3.5. How can I install to 3.7?

You would be better off waiting for Debian Buster which should meet your requirements.

1 Like

This worked anyhow: sudo python3.7 -m pip install ‘numpy>1.0, <1.15’ --force-reinstall this worked

Now it’s complaining of: ModuleNotFoundError: No module named ‘_sqlite3’

Had to rebuild python from source with sqlite downloaded prior - job done!