我尝试安装软件包Setuptools Wheels Twine以便在Pypi中发布我的软件包,但是在安装安装软件包时出现此错误。 我正在使用Windows 10作为我的OS和VS代码。
C:\Users\Farhan Hasant\moshpdf>pip install setuptools wheels twinese
Collecting setuptools
Using cached https://files.pythonhosted.org/packages/d1/6a/4b2fcefd2ea0868810e92d519dacac1ddc64a2e53ba9e3422c3b62b378a6/setuptools-40.8.0-py2.py3-none-any.whl
Collecting wheels
Could not find a version that satisfies the requirement wheels (from versions: )
No matching distribution found for wheels
答案 0 :(得分:1)
正确的代码是:
pip install setuptools wheel twine
答案 1 :(得分:1)
您无需安装轮子即可将软件包分发到PyPI。 您必须提供以下命令-
python setup.py bdist_wheel
python setup.py sdist
twine upload dist/*
第一个命令将创建一个.whl软件包。第二个命令将制作一个.tar.gz包(支持旧版本Python的一种很好的做法),第三个命令是twine命令,该命令会将您的模块上传到PyPI