我创建了一个包,并尝试将其上传到testpypi进行测试,如Python Packaging User Guide中所述。我创建了一个发行版,注册了它,并将其上传到testpypi:
me@machine$ cd mypackage
me@machine:~/mypackage$ python setup.py sdist bdist_wheel
me@machine:~/mypackage$ twine register dist/mypackage-1.0.0-py3-none-any.whl -r https://testpypi.python.org/pypi
me@machine:~/mypackage$ twine upload dist/* -r https://testpypi.python.org/pypi
这很好,但是试图安装它
me@machine:~$ pip install -r https://testpypi.python.org/pypi mypackage
因以下错误而失败:
Invalid requirement: '<?xml version="1.0" encoding="utf-8"?>'
Traceback (most recent call last):
[...]
pip._vendor.pyparsing.ParseException: Expected W:(abcd...) (at char 0), (line:1, col:1)
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/vol/home/me/miniconda3/envs/myenv/lib/python3.5/site-packages/pip/req/req_install.py", line 82, in __init__
req = Requirement(req)
File "/vol/home/me/miniconda3/envs/myenv/lib/python3.5/site-packages/pip/_vendor/packaging/requirements.py", line 96, in __init__
requirement_string[e.loc:e.loc + 8]))
pip._vendor.packaging.requirements.InvalidRequirement: Invalid requirement, parse error at "'<?xml ve'"
答案 0 :(得分:0)
使用testpypi服务器的命令行参数与上载和安装不同。
对于pip,-r
参数指定了一个需求文件,显然可以是一个URL。如果您添加-v
,则会获得:
me@machine:~$ pip install -v -r https://testpypi.python.org/pypi mypackage
Looking up "https://testpypi.python.org/pypi" in the cache
No cache entry available
Starting new HTTPS connection (1): testpypi.python.org
"GET /pypi HTTP/1.1" 200 23968
Updating cache with response from "https://testpypi.python.org/pypi"
Invalid requirement: '<?xml version="1.0" encoding="utf-8"?>'
[...]
https://testpypi.python.org/pypi
的响应不是有效的需求文件和pip崩溃。
要使用pip install
从pypi以外的其他来源安装,您需要使用-i
参数:
me@machine:~$ pip install -i https://testpypi.python.org/pypi mypackage
这应该按预期工作,并从testpypi服务器安装mypackage
。