运行 python Windows 上的模块命令
Run python module commands on Windows
我在 Windows 终端中使用 pip install sphinx
命令安装了 Sphinx,我想 运行 sphinx-quickstart
在我的 docs
目录中制作文档,但它没有没用。
我得到的是这个错误:
sphinx-quickstart : The term 'sphinx-quickstart' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
如果我尝试通过 GitBash 或在开头使用 py
或 python
运行 它说:
\path_to_python\python.exe: can't open file '\My_working_directory\docs\sphinx-quickstart': [Errno 2] No such file or directory
我该如何解决这个问题?
最简单的方法是创建简单的虚拟环境,然后您就可以安装所需的包并 运行 它。
只需创建文件夹和 运行 命令来创建虚拟环境,然后使用 .bat
文件激活它。
阅读 docs,但在 Python 的未来版本中可能有所不同。
我在 Windows 终端中使用 pip install sphinx
命令安装了 Sphinx,我想 运行 sphinx-quickstart
在我的 docs
目录中制作文档,但它没有没用。
我得到的是这个错误:
sphinx-quickstart : The term 'sphinx-quickstart' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again.
如果我尝试通过 GitBash 或在开头使用 py
或 python
运行 它说:
\path_to_python\python.exe: can't open file '\My_working_directory\docs\sphinx-quickstart': [Errno 2] No such file or directory
我该如何解决这个问题?
最简单的方法是创建简单的虚拟环境,然后您就可以安装所需的包并 运行 它。
只需创建文件夹和 运行 命令来创建虚拟环境,然后使用 .bat
文件激活它。
阅读 docs,但在 Python 的未来版本中可能有所不同。