Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

Updating the Library

Kelvin edited this page Apr 30, 2021 · 5 revisions

Windows

  1. (Windows) Open a new powershell console, navigate to the project, and run the upgrade command:

    cd /path/to/project
    
    .\venv\Scripts\activate
    
    pip install --upgrade fsf_api_access_python

    Screenshot

  2. The project should now be updated to the newest version. To check if the version is the most up to date version, run:

    pip list

    And verify that the version beside fsf_api_access_python is the same as the one posted at https://pypi.org/project/fsf-api-access-python/


MacOS / Linux

  1. (MacOS / Linux) Open a new bash terminal, navigate to the project, and run the upgrade command:

    cd /path/to/project
    
    source venv/bin/activate
    
    pip install --upgrade fsf_api_access_python
  2. The project should now be updated to the newest version. To check if the version is the most up to date version, run:

    pip list

    And verify that the version beside fsf_api_access_python is the same as the one posted at https://pypi.org/project/fsf-api-access-python/

Clone this wiki locally