python3 -m venv env
source env/bin/activate
git pull
pip install --upgrade pip
pip3 install -r requirements.txt
Title
├── data
│ ├── processed <- The final, canonical data sets for modeling.
│ └── raw <- The original, immutable data dump.
│
├── notebooks <- Jupyter notebooks of the project
│
├── .gitignore <- Files to ignore by `git`.
│
├── git.sh <- A simple code to execute git comands
|
├── requirements.txt <- The requirements file for reproducing the analysis
│
└── README.md <- The top-level README for developers using this project.