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.
Asked
Active
Viewed 164 times
-1

anna
- 405
- 5
- 13
-
Seems, you do not have access right to that (last) shown path. – Xenobiologist Feb 19 '20 at 14:51
1 Answers
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