使用pip时系统无法执行指定的程序

The system cannot execute the specified program when using pip

我试过下载colorama,但是写pip install colorama的时候出现错误:

The system cannot execute the specified program.

这里是命令输入和输出:

C:\Users\ADMIN>pip install colorama
The system cannot execute the specified program.

您可能最近安装了 pip(首次使用?

Windows 检测到它是可疑的,请您先“解锁”它。

  1. 验证 python 是否已安装并正常工作:python -V(将当前 python 版本打印到控制台)
  2. 确保安装了最新的 pip 版本:python -m ensurepip --upgrade
  3. 验证 pip 是否正常工作:pip -V(将当前 pip 版本打印到控制台)
  4. 安装包:pip install colorama