My QA Projects

QA Projects I was involded.

View on GitHub

Objectives

install python

xcode-select --install
brew install pyenv
pyenv install 3.9
#PYTHON_VERSION

#to verify
python3 --version
pip3 --version
python -m pip install --upgrade pip

Using venv to isolate dependencies

cd my-project
python -m venv env

# Set your shell to use the venv paths for Python by activating the virtual environment:
source env/bin/activate

# Now you can install packages without affecting other projects or your global Python installation:
pip install google-cloud-storage

# pip install google-cloud-storage
deactivate