Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 419 Bytes

README.md

File metadata and controls

23 lines (19 loc) · 419 Bytes

KMeans_Clustering_poker.csv

create virtual env & activate it.

conda create -p python=3.8 -y
source activate .venv/

create requirements.txt file & install all the required libs

touch requirements.txt
pip install -r requirements.txt

create a data folder and upload the poker csv file

mkdir data

install jupyter notebook to write and develope code easily

pip install jupyter notebook