Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是 Python 的初学者,我拥有一本关于 Python 的书,但我被困在必须将包上传到 PyPI 的部分。这本书展示了如何使用 Mac 和 Linux,而不是 Windows。我试图按照这本书,但它根本不适用于 Windows CMD。我想知道是否有人可以在这个话题上帮助我。任何帮助,将不胜感激!
-- 谢谢=) !!!
您是否使用 Windows 安装程序安装了 Python?听起来 Python 脚本没有在 python 运行时注册。
你也可以做
> cd C:\Path\To\The\Package\Directory C:\Path\To\The\Package\Directory> C:\Python27\python.exe setup.py register
(将 Python27 替换为您已安装的版本)。