Created
July 10, 2022 05:15
-
-
Save yuchdev/93658e6af9e0fa03f9c31b948e13eacd to your computer and use it in GitHub Desktop.
Create venv
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 | |
# Install | |
pip3 install --user virtualenv | |
virtualenv –version | |
# Activate | |
virtualenv venv | |
source venv/bin/activate | |
# Deactivate | |
deactivate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment