0
点赞
收藏
分享

微信扫一扫

Pip Find Local Archives

九点韶留学 2022-02-26 阅读 24
python

See pip help install:

For a setup.py package, create wheel package by

python setup.py bdist_wheel

Then copy this package into a directory:

cp dist/{package}-{version}-py3-{x}-{y}.whl /tmp/whl/

Install this package by:

pip install -f /tmp/whl {package}

If you release a newer version, pip will handle upgrade things for you.

举报

相关推荐

0 条评论