netmemo / netmemo.github.io

1 stars 0 forks source link

post/python-package-offline/ #4

Open utterances-bot opened 4 months ago

utterances-bot commented 4 months ago

Python Package Offline | netmemo.github.io

To install python packages offline (with no internet access), the simplest way is to dowload the packages with the dependencies on a server with internet access and the below command. C:\Users\Nono\Desktop\pythonpip download requests Collecting requests Using cached requests-2.25.1-py2.py3-none-any.whl (61 kB) Collecting urllib3=1.21.1 Using cached urllib3-1.26.3-py2.py3-none-any.whl (137 kB) Collecting certifi=2017.4.17 Using cached certifi-2020.12.5-py2.py3-none-any.whl (147 kB) Collecting idna=2.5 Using cached idna-2.10-py2.py3-none-any.whl (58 kB) Collecting chardet=3.0.2 Using cached chardet-4.0.0-py2.py3-none-any.whl (178 kB) Saved c:\users\nono\desktop\python\requests-2.

https://netmemo.github.io/post/python-package-offline/

EstebanFuentes1302 commented 4 months ago

This is actually helpful! thank you! btw can you explain the 'pip install --no-index --find-links=file:C:\Users\Nono2\tools\python-modules\resquests requests' command, like what does it means exactly?