我正在尝试从本地文件系统安装某些软件包(例如:openpyxl),但是pip安装程序始终从pypi.org或pypi.python.org而不是从本地路径中查找软件包。
下面是我使用过的命令。
pip install openpyxl c:\users\test\openpyxl-2.6.3.tar.gz
easy_install openpyxl c:\users\test\openpyxl-2.6.3.tar.gz
执行上述命令后:出现以下错误:
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.
遇到:
Operating System: Windows 10
Python Version: 3.7
Pip Version:10.0.1
在此先感谢您的帮助!
答案 0 :(得分:0)
您的命令
pip install openpyxl c:\users\test\openpyxl-2.6.3.tar.gz
应该是
pip install c:\users\test\openpyxl-2.6.3.tar.gz
由于pip install
直接接受指向.tar.gz
文件的本地路径。
请注意,您的pip
也已经过时了。您可能需要考虑将其升级到最新版本