我按照下面 PyPI 链接中的说明将我的 Python 包上传到 PyPI: https ://packaging.python.org/tutorials/packaging-projects/
但我被困在安装后需要运行 twine 的步骤,即以下步骤:
安装后,运行 Twine 上传 dist 下的所有档案:
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*
当我在命令提示符下运行上述命令时(我在 Windows 中使用 cmd),我收到以下消息:
'twine' is not recognized as an internal or external command, operable program or batch file.
我究竟做错了什么?从 pip 安装 twine 的目录到 dist/* 文件夹所在的目录安装 twine 后,是否需要更改目录?或者我以某种方式没有正确安装麻线?(我在安装 twine 时确实收到了一些警告消息,但它确实说最后成功安装了 twine - 我在此处附上了警告消息的图像)。