我在 Windows 上使用 pip 安装了一个 python 包。为什么我无法从命令行调用它?

我在 Windows 上使用 pip 安装了一个 python 包。为什么我无法从命令行调用它?

在 Powershell 中,我使用 pip 安装了 boto-rsync:

PS> pip install boto-rsync

按照预期,将 boto-rsync 安装在 C:\python27\Scripts 中,名称为“boto-rsync”。我的路径是 C:\python27\Scripts(pip.exe 在那里),但我无法从命令行调用我的新包,例如:

PS> boto-rsync *from* *to*

答案1

您无法在 PowerShell 中运行 Python 脚本。(您可以在 Unix shell 中运行)。您必须执行以下操作:

python.exe path/to/some/script.py

假设 python.exe 在你的路径中。否则你必须做这样的事情:

C:\Python27\python.exe path/to/some/script.py

相关内容