使用 twine 上传自己的 python 包到 pypi
Posted leffss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 twine 上传自己的 python 包到 pypi相关的知识,希望对你有一定的参考价值。
- 打包检查
python setup.py check
- 打包
python3 setup.py sdist build
- 上传
twine upload dist/*
- twine 安装: pip install twine
twine 提示输入 pypi 账号和密码,上传成功否就能在自己的pypi账号中看到了。
但是并不是马上就能使用 pip 安装了。需要等待一段时间。
以上是关于使用 twine 上传自己的 python 包到 pypi的主要内容,如果未能解决你的问题,请参考以下文章