Windows

Install Python

You will need Python, which you can download from www.python.org.

  1. Choose the latest version (currently 3.11)

  2. When you install select the following additional options, when prompted:

  1. Add Python to environment variables.

  2. Pre-compile the standard library.

Extra Python configuration

Now add the Python script directory to your PATH as follows:

  1. Open a Command Prompt (type ‘cmd’ in the Windows search box to find the Command Prompt app).

  2. At the prompt enter this command:

    python -c "import sys; print(sys.executable)"
    

    This show where Python is installed. On my PC this displays:

    c:\Users\Paul\AppData\Local\Programs\Python\Pytheon311\python.exe
    
  3. Type ‘environment’ in the Windows search box. The open “Edit the system environment variables, Control panel”.

    1. Click on the “Environment Variables” near the bottom of the “System Properties” window.

    2. In the “Environment Variables” window, find the “Path” entry, select it and click the “Edit…” button below.

    3. In the “Edit Environment Variable” window, click the “New” button and enter the Python scripts path, based on the Python installation directory obtained earlier. In my case the path I need is:

      c:\Users\Paul\AppData\Local\Programs\Python\Pytheon311\Scripts
      

      i.e. replace “python.exe” with “Scripts”.

    4. Click OK and close all the windows opened so far, including the “Command Prompt” window.

Install Clippets

  • Open a new Command Prompt (type ‘cmd’ in the Windows search box to find the Command Prompt app).

  • Enter the command:

    python -m pip install --user clippets
    

This will install the Clippets application.