STEPS TO INSTALL JUPYTER NOTEBOOK ON MINICONDA
• Search Miniconda installation over google and download documentation as per your system
configuration.
• Once downloaded, search Anaconda Prompt (Miniconda) in your system and CMD will open up.
--Miniconda is CLI and is light weight version of Anaconda which contains few pre-installed packages.
1) To change directory (path you have saved or installed)
f: (whichever is your path)
cd miniconda
2) python --to see the installed version
3) To install python
conda create -n myenv python
4) conda activate myenv
5) pip freeze
will change (BASE)--(myenv)
6) pip install pandas
7) pip install jupyter
• To install sklearn (to implement machine learning models like regression, classification, clustering
etc.), run it on Jupyter.
!pip install scikit-learn
• Other libraries can also be installed in the similar way.
Link for reference:
[Link]
Please refer to the above link for detailed installation steps. You can also refer to other links for steps (if
facing difficulty to understand from the given reference).
Intent:
Due to restricted time with respect to the lab session, if the participants could come prepared with
Jupyter already installed, this will allow us to delve straight into the concepts without any time wasted
on installation procedures. Other queries with respect to installation can be taken up in the session for
some time or through offline forum.
ALL THE BEST!