0% found this document useful (0 votes)
11 views1 page

ML Project Steps

Uploaded by

Maaz Sayyed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views1 page

ML Project Steps

Uploaded by

Maaz Sayyed
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

ML Project Setup:

1. Anaconda Python (For Environment)


2. Anaconda Prompt
3. Write location of project cd <location>
4. To open in VS Code add >code .
5. Open VS Code and add file requirements.txt
6. Create a new environment for new project using Anaconda(conda lib.)
7. For new environment:
i. Open Terminal (Command Prompt for windows choose from option "+" sign)
ii. If first time then, folder location is in (base) environment
iii. But we will not work in base env.
iv. Write in terminal conda create -p(prefix) venv(name of folder where all
packages will be installed) python==3.8(ver.)
v. it will take some time
vi. click yes for env.
vii. After venv folder is visible, go in terminal and write conda activate
venv/
viii. All packages will be installed in venv folder/environment

8. Basic Setup for all projects


i. Create file setup.py
ii. Using this it can be used as an package for other dev.
iii.
9. git repo

You might also like