How do you set the environment variable PROJECT_HOME
and WORKON_HOME
in virtualenvwrapper
for Windows?
Asked
Active
Viewed 490 times
0

phd
- 82,685
- 13
- 120
- 165

djangoscholar
- 133
- 2
- 11
-
1Possible duplicate of [How to set Environment variables from Windows](https://stackoverflow.com/questions/32463212/how-to-set-environment-variables-from-windows) – phd May 14 '18 at 20:37
-
1[SETX](https://stackoverflow.com/a/3804979/7976758) – phd May 14 '18 at 20:38
1 Answers
0
i believe that one form is:
open cmd console
then go into the direction that you want to set your enviromente variable
and then write echo >> .env
for other kind of variable you can do in the cmd
set var=polo
and to see the value put
echo %var%
some of the information is from here: https://www.computerhope.com/echohlp.htm

mrpepo877
- 490
- 6
- 23