I am trying to install some of the packages (Example: openpyxl) from local file system, however pip installer is always looking package from pypi.org or pypi.python.org and not from the local path.
Below are the commands, I have used.
pip install openpyxl c:\users\test\openpyxl-2.6.3.tar.gz
easy_install openpyxl c:\users\test\openpyxl-2.6.3.tar.gz
After the above commands are executed:I get the below errors:
Searching for openpyxl
Reading https://pypi.python.org/simple/openpyxl/
Download error on https://pypi.python.org/simple/openpyxl/
Installer pointing to pypi.python.org and not the local filesystem.
Encountered in:
Operating System: Windows 10
Python Version: 3.7
Pip Version:10.0.1
Thanks in advance for your help!