-
-
Save hugollm/c6e4a94495bc3e3e65a448eb23d85f4c to your computer and use it in GitHub Desktop.
Script to easily jump into a python3 virtualenv
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 characters
#!/bin/bash | |
if [ ! -d ".env" ]; then | |
virtualenv -p `which python3` .env | |
fi | |
source .env/bin/activate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment