I need to install some python libraries on a offline server but I got stuck trying.
I decided to start with a basic library like Numpy first. But I can't make it work because I'm getting errors:
- Downloading numpy-1.24.2.tar.gz from pypi.org, extracting the folder and run
python setup.py install
- Copying numpy folder from an online computer from the path:
C:\Program Files\Python39\Lib\site-packages
and trying the same line commandpython setup.py install
Also tried to install cython but it requires VS BuildTools which also requires internet connection to be installed
How Can I install numpy and any other python libraries if the server doesn't have internet access?