Create new conda Env:
conda create -n ml python=3.7
Activate Env:
conda activate ml
Install numpy, matplotlib, pandas
conda install matplotlib
conda install numpy
conda install pandas
Install jupyter to show notebooks
conda install jupyter
Start jupyter notebook in current folder
jupyter notebook