This document describes setup required for the PM2.5 research project using Python and Conda.
Create a new Conda environment with Python 3.10:
conda create -n myvnev python=3.10u can change the name myvnev
conda activate myvnevThe following libraries are used for data manipulation, visualization, and preprocessing:
- NumPy & Pandas
- Matplotlib & Seaborn
- Scikit-learn
- tensorflow
- lightgbm
- xgboost
- optuna
All dependencies are managed using a requirements.txt file.
pip install -r requirements.txtconda deactivate myvnev