How To Install Python Module Without Pip After We Download The Module To Local Folder
we can download the module - requests , as the following cd /home/module/ pip download requests ls -l certifi-2019.9.11-py2.py3-none-any.whl chardet-3.0.4-py2.py3-none-any.whl id
Solution 1:
You could install the module from source:
foo@bar:~/$ git clone https://github.com/psf/requests.git
foo@bar:~/$ cd requests
foo@bar:~/requests$ git checkout v2.22.0
foo@bar:~/requests$ python setup.py install
Post a Comment for "How To Install Python Module Without Pip After We Download The Module To Local Folder"