python -m venv venv && source venv/bin/activate #Linux
python -m venv venv && \venv\Scripts\activate #Windowspython -m venv venv source .venv/bin/activate(venv) drew@Andrews-MacBook-Pro% deactivatepip install -r requirements.txtpython main.pypip list
python --version
pip --version
export TWILIO_ACCOUNT_SID=<TOKENID>
export TWILIO_AUTH_TOKEN=<TOKENID>
echo $TWILIO_ACCOUNT_SID
echo $TWILIO_AUTH_TOKENIf trying to do this with VS CODE ensure you have your files open on the left side aka the workspace
Command+shift+p select interpreter and chose .venv/bin python