-1

I was trying to install a virtual environment in windows and I am getting the following error message. I tried googling it but wasn't much of any help.error message while installing virtual env

anna
  • 405
  • 5
  • 13

1 Answers1

1

I hope I understand the problem correctly. You can try

python -m pip install virtualenv

If that fails, all you need to do is either start cmd as admin, which probably some people will advise against, or use the --user flag, to install the pip package.

n00by0815
  • 184
  • 1
  • 12
  • To add to this, you could have found the solution here as well: https://stackoverflow.com/questions/31172719/pip-install-access-denied-on-windows This thread also has other options that might have worked. – n00by0815 Feb 19 '20 at 15:19