Bootstrap new venv with python
This file contains 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 characters
# Create the virtual environment | |
python3 -m venv .venv | |
# configure created venv in your shell (vscode will do this automatically if you use a new shell) | |
source .venv/bin/activate | |
# or if you are using fish shell: | |
. .venv/bin/activate.fish | |
pip install -r requirements/local.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment