project 4 repository
Create and activate project in the project virtual environment Install the required packages into the local project local environment Use terminal commands for mac to activate virtual environment, install jupyter lab and others, and freeze requirements
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install jupyterlab pandas matplotlib seaborn
python3 -m pip freeze > requirements.txt
Import matplotlib, pandas, and seaborn for use in module
After creating and activating the project in the virtual environment, adding extensions, freezing requirements, and importing dependencies, you can start writing code to run.