Create an Environment
conda create -n wineq python=3.7 -y
Activate Environment
conda activate wineq
Install the requirements
pip install -r requirements.txt
Download the data from
https://drive.google.com/drive/folders/18zqQiCJVgF7uzXgfbIJ-04zgz1ItNfF5?usp=sharing
git init
dvc init
For Data to be tracked
dvc add data_given/winequality.csv
For git to track
git add .
git commit -m "first commit"
One-liner updates for readme
git add . && git commit -m "update Readme.md"
git remote add origin https://github.com/<USER_ID>/<REPO_NAME>.git
git branch -M main
git push origin main
To run the Web app
python app.py
Tox command -
tox
For Updation -
tox -r
Pytest command
pytest -v
Setup commands -
pip install -e .
build your own package commands-
python setup.py sdist bdist_wheel