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.
我下载了带有 setup.py 文件的 dateutil,但是当我尝试打开它时会引发错误。安装此模块的正确方法是什么?
这是错误:
error: no commands supplied
setup.py 旨在从命令行运行。您需要打开命令提示符(在 Windows 7 中,按住 shift 并右键单击包含 setup.py 文件的目录。您应该能够选择“在此处打开命令窗口”)。
从命令行,您可以键入
python setup.py --help
...获取命令列表。你要做的是...
python setup.py install