Quick create virtual env for python

bachhuynh

Bach Huynh V. VN.Danang

Posted on August 21, 2024

Quick create virtual env for python

move to the folder

cd python-script

Setup virtualenv

python3 -m venv <env-name>

Create a virtualenv

virtualenv <env-name>

activate the virtualenv

source <env-name>/bin/activate

install boto3

pip install boto3

run script

cd ..
python <python file name>

πŸ’– πŸ’ͺ πŸ™… 🚩
bachhuynh
Bach Huynh V. VN.Danang

Posted on August 21, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related