Skip to content

Latest commit

 

History

History
23 lines (12 loc) · 341 Bytes

File metadata and controls

23 lines (12 loc) · 341 Bytes

Machine-Learning-Modular-Coding

  1. create new environment

conda create -p venv python=3.9 -y

  1. Activate your environment

conda activate venv/ --> cmd

source activate venv/ --> git bash

  1. Install requirements file

pip install -r requirements.txt

  1. Git commit

git add .

git commit -m "Comments for the add"

git push origin main