simply, I used py -m venv example-env
, and created a venv. Now I want to delete it whether insure there will be no side effect on my libraries.
If I delete the (.example-venv
) subfolders, is it ok? I mean, is it a standard action?!
Asked
Active
Viewed 19 times
0
-
Yes, it is normal. If you need to recreate a new virtual environment, then you will need to re-*pip*-install the 3rd party libraries. – sinoroc Feb 13 '23 at 18:56