Created
June 22, 2019 20:55
-
-
Save minamaged113/0bd03a4c4796cfec7f7f2c8a061977e9 to your computer and use it in GitHub Desktop.
Create a Python virtual environment using ´venv´ internal tool shipped with python.
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 | |
python3 -m venv venv | |
source venv/bin/activate |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment