2

I'm new to Github and I tried using Sherlock, installing the requirements with the code

python3 -m pip install -r requirements.txt

But it says permission denied, so I tried turning off UAC and opening git bash as admin and using the --user command but it still doesn't work.

I am using Windows 10 and I see:

git bash error

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
iXanderM
  • 47
  • 3
  • 7
  • Give this post a try. https://stackoverflow.com/questions/31172719/pip-install-access-denied-on-windows#:~:text=Try%20to%20give%20permission%20to,It%20works%20for%20me. – Mitch Jun 17 '20 at 03:58

1 Answers1

0

Consider first that python3 won't work in minTTY environment

So try instead:

winpty python.exe -m pip install -r requirements.txt

You can set an alias as in here in your ~/.bashrc

VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250