Learn Algo Trading with Python | Codes | Youtube Series

we need to install certifi so that we dont get SSL certificate error, Auto installing certifi is giving errors
so lets manually download and install the certifi package.

Step 1: Download the certifi .whl File

  1. Visit the PyPI page for certifi.
  2. Download the .whl file … certifi-2024.8.30-py3-none-any.whl` file under built Distribution
  3. Move the .whl file to Desktop > New Folder.

Step 2: Open Command Prompt as Administrator

  1. Press Win + S and type cmd.
  2. Right-click on Command Prompt and select Run as administrator.

Step 3: Navigate to the New Folder Containing the .whl File and run the .whl file

  1. On cmd write
    cd Desktop
    cd New folder
    cd New folder
    pip install certifi-2024.8.30-py3-none-any.whl

**Step 4: After this run install libraries.bat

3 Likes