1. Go to Set up conda environment to know how to create conda environment in detail.

  2. Go to Jupyter Notebook inside your Conda environment to know how to set-up Jupyter notebook in your particular conda environment.

  3. Create folder for your project. e.g. curvefit.

  4. Go to Set-up Git and GitHub to know how to set-up Git and GitHub.

  5. Creata a .bat file to quickly start jupyter notebook inside your preferred conda environment.

call "...\anaconda3\Scripts\activate.bat" "...\dacurvefit"
call jupyter notebook
pause

Create start_jupyter.bat file and put above code inside it. First path is where the anaconda activate.bat file is located in your system, and the second is where the conda environment is located.

  1. Run start_jupyter.bat file and it will open up the Jupyter notebook.

  2. Create new Jupyter notebook.