Created
October 20, 2021 15:46
Revisions
-
0scvr created this gist
Oct 20, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ # create a virtual environment named env by convention python3 -m venv env # make sure to add env/ (or whatever you named your virtual environment) to your .gitignore file # use the virtual environment source env/bin/activate # save dependencies to requirements.txt file pip freeze > requirements.txt # exit the virtual environment deactive