I am using Python 3.4 for Windows. I created a virtual environment using
python c: \ Python34 \ Tools \ Scripts \ pyvenv.py foo
Then activate it
Foo \ Scripts \ activate.bat
And installed several libraries in it.
Question: Is it safe to rename the venv folder "foo" to "bar"? That is, as soon as I rename foo to bar and then activate it with
bar \ Scripts \ activate.bat
will it work
What problems may arise - any settings of environment variables and absolute paths.
source share