Closed stevepiercy closed 1 week ago
--clear
is the recommended way to wipe and recreate a clean virtual environment.python3 -m venv venv --clear
will purge files and directories, such as.git
and.my_special_config
, from the current directory. This would be Very Bad™.
:-) Funny experience when the repo content disappears on python3 -m venv . --clear
!
--clear
is the recommended way to wipe and recreate a clean virtual environment.python3 -m venv venv --clear
will purge files and directories, such as.git
and.my_special_config
, from the current directory. This would be Very Bad™.make distclean
such that it cleans both the docs directory and the virtual environment, then recreates the virtual environment and installs requirements into it. This is useful when your project gets confused about what exactly is in your virtual environmentCredit to @mrtango
📚 Documentation preview 📚: https://plone6--1769.org.readthedocs.build/