Python Forum
Trying to set up virtualenv for windows not working - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: Web Scraping & Web Development (https://python-forum.io/forum-13.html)
+--- Thread: Trying to set up virtualenv for windows not working (/thread-30188.html)



Trying to set up virtualenv for windows not working - zazas321 - Oct-11-2020

Hello. I am trying to learn web development using python and django. I have watched a few videos and most suggest using virtualenv. I have installed python 3.9 from windows store and did pip install virtualenv all successful. I have made a directory on my desktop where I plan to keep all my web development stuff.

I am trying to follow this guide:
https://www.codingforentrepreneurs.com/blog/install-python-django-on-windows/
The only difference is that I have not installed the python as he did, I just installed it from windows store but I believe that should not cause any problems?

Once I am in my working directory, I am trying to set up my virtual environment :
virtualenv . 
However, with no luck.. See the url image below
https://ibb.co/9Y5PtLN

Can someone give me some tips on how to properly setup everything in my windows machine?
It seems that I have some problems with paths but im not certain how do I fix it


RE: Trying to set up virtualenv for windows not working - mlieqo - Oct-11-2020

Try: 
python3 -m virtualenv .



RE: Trying to set up virtualenv for windows not working - zazas321 - Oct-13-2020

Seems to be working. Could you explain what are the differences between these two functions?