Reputation: 67
I'm trying to set clone GIT directory and then installing virtual env in my machine which is running python. This is for installing learning game per below link.
https://opensource.com/article/20/5/python-games
I'm able to execute below two commands in GIT bash and clone this.
$ git clone https://github.com/moshez/penguin-bit-by-bit.git
$ cd penguin-bit-by-bit
But when I'm executing below command in GIT, its giving me permission denied error
python -m venv venv
looks to be permission issues. But help will be appreciated.
thanks
Upvotes: 3
Views: 3438
Reputation: 33
I had the same error. But, when I tried:
py -m venv venv
instead of
python -m venv venv
It worked.
Upvotes: 3