We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 73b6cdc commit f4a75d9Copy full SHA for f4a75d9
envsetup
@@ -0,0 +1,8 @@
1
+#Setting up virtual environment in windows
2
+
3
+pip install virtualenv
4
+pip install virtualenvwrapper-win
5
+mkvirtualenv env #here env is the name of environment you want to create
6
+setprojectdir . #this is optional to set directory with particular environment
7
+workon env #env is environment name(It directly opens your env directory)
8
+deactivate #for removing environment
0 commit comments