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 5, 2021 · 5 revisions

Windows

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

```shell script
cd /path/to/project

.\venv\Scripts\activate

pip install --upgrade fsf_api_access_python
```

![Screenshot](https://raw.githubusercontent.com/FirstStreet/fsf_api_access_python/master/doc/images//6.1.2.png)
  1. 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

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

```shell script
cd /path/to/project

source venv/bin/activate

pip install --upgrade fsf_api_access_python
```
  1. 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