rodrigosantosbr

[Py] Virtualenv - how to reset

Jan 21st, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!

When your working with python and virtualenv, and multiple branches, sometimes your Virtualenv gets cluttered.

To make sure that you have only the packages from requirenments.txt, refresh the virtualenv with the following snippet

virtualenv --clear [venv_name]

And then install the requirements.txt again

Add Comment
Please, Sign In to add comment