Reputation: 13
I tried to download colorama, but when I write pip install colorama
, there is an error:
The system cannot execute the specified program.
Here is the command input and the output:
C:\Users\ADMIN>pip install colorama
The system cannot execute the specified program.
Upvotes: 1
Views: 9934
Reputation: 1645
python -V
(prints current python version to console)python -m ensurepip --upgrade
pip -V
(prints current pip version to console)pip install colorama
Upvotes: 1
Reputation: 117
You probably installed pip very recently (first usage ?)
Windows detected it as suspicious and ask you to "unblock" it first.
Upvotes: 0