5

I'm following the Django installation tutorial for Windows. I ran the installation command below and it worked fine.

pip install virtualenvwrapper-win

However, when I try running mkvirtualenv myproject I get an error saying bash: mkvirtualenv: command not found

I am running Git Bash on Windows. I found a solution for the Windows Command Prompt here, but I was hoping to use Git Bash, because I'm much more familiar with it.

Thanks!

Skanda Suresh
  • 113
  • 1
  • 9

1 Answers1

0

Maybe it is too late to answer this, but let me put my anser here anyhow.

I ran the pip install command twice, and finally everything is working for me. Just run "pip install" line this:

First do it: "pip install virtualenv virtualenvwrapper" Second, do it: "pip install virtualenvwrapper-win"

Everything should be fine after that.