Creating a shortcut for Jupyter Notebook

less than 1 minute read

This is a quick post on how to create a shortcut for Jupyter Notebook. In this case, you need to connect your PATH of your Python Conda. Here’s how:

  1. Open your “Edit the system environment variables”
  2. Then click on “Environment Variables…:
  3. Click twice on “Path”
  4. Click new
  5. Add C:\Users\{YourPCUsername}\miniconda3\Scripts
  6. Donezo

Create a shortcut

Add a shortcut location

Type in the following: cmd /k conda activate 'envName' & jupyter notebook

Write the name of shortcut

(Optional) add the icon

You can get the icon of jupyter notebook here and then choose ICO part

Leave a comment