Setuptools Wheels Twine 包安装错误
Setuptools Wheels Twine Package Install Error
我正在尝试安装 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
正确的代码是:
pip install setuptools wheel twine
您无需安装轮子即可将包分发到 PyPI。
你必须给出以下命令-
python setup.py bdist_wheel
python setup.py sdist
twine upload dist/*
第一个命令将制作一个 .whl 包。第二个命令将制作一个 .tar.gz 包(支持旧版本 Python 的一个好习惯),第三个是 twine 命令,它将把你的模块上传到 PyPI
我正在尝试安装 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
正确的代码是:
pip install setuptools wheel twine
您无需安装轮子即可将包分发到 PyPI。 你必须给出以下命令-
python setup.py bdist_wheel
python setup.py sdist
twine upload dist/*
第一个命令将制作一个 .whl 包。第二个命令将制作一个 .tar.gz 包(支持旧版本 Python 的一个好习惯),第三个是 twine 命令,它将把你的模块上传到 PyPI