无法在Git CMD中使用pip命令,我该怎么办?

b0zn9rqh  于 2022-10-02  发布在  Git
关注(0)|答案(1)|浏览(191)

所以,我正在尝试安装和运行一个名为SnapBrute的程序,我想在网络安全领域工作,但我还没有太多经验,以下是我所做的,顺便说一句,我已经安装了Python,我正在使用Git CMD;

C:Usersballsman> git clone https://github.com/Plasmonix/SnapBrute

Completed message

C:Usersballsman> cd SnapBrute

C:UsersballsmanSnapbrute> pip install -r requirements.txt

pip is not recognized as an internal or external command,``operable program or batch file.

当我运行Main.py时...

C:UsersballsmanSnapbrute> ./main.py

'.' is not recognized as an internal or external command,``operable program or batch file.

3qpi33ja

3qpi33ja1#

您必须将其添加到环境路径中。 checkout 这里的第一个答案'pip' is not recognized as an internal or external command,然后使用python main.py运行它。

相关问题