conda create --name ml_base
conda activate ml_base
conda install pandas numpy scipy
conda install scikit-learn
conda install -c conda-forge matplotlib
conda install -c anaconda git
conda install -c anaconda ipykernel
conda install -c conda-forge jupyterlab
conda deactivate
conda create --name tensorflow --clone ml_base
conda activate tensorflow
conda install -c anaconda tensorflow-gpu
python -m ipykernel install --user --name tensorflow --display-name "Python (tensorflow)"
conda deactivate
conda create -n keras --clone tensorflow
conda activate keras
conda install -c conda-forge keras
python -m ipykernel install --user --name keras --display-name "Python (keras)"
conda deactivate
conda create -n pytorch --clone ml_base
conda activate pytorch
conda install -c pytorch pytorch
python -m ipykernel install --user --name pytorch --display-name "Python (pytorch)"
conda deactivate
# check all your kernel
jupyter kernelspec list
# delete your kernel
jupyter kernelspec uninstall yourKernel