Skip to content

Commit

Permalink
add virtual env step to readme quickstart (#4868)
Browse files Browse the repository at this point in the history
Co-authored-by: Neville Samuell <[email protected]>
  • Loading branch information
SteveDMurphy and NevilleS authored May 9, 2024
1 parent 477ebe8 commit 63f79e2
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,19 @@ In order to get started quickly with Fides, a sample project is bundled within t

#### Download and install Fides

You can easily download and install Fides using `pip`. Run the following command to get started:
> [!TIP]
> We highly recommend setting up a Python virtual environment such as `venv` to install Fides into. For example:
>
> ```sh
> mkdir ~/fides
> cd ~/fides
> python3 -m venv venv
> source venv/bin/activate
> ```
Once your virtual environment is ready, you can easily download and install Fides using `pip`. Run the following command to get started:
```sh
```
pip install ethyca-fides
```
Expand Down

0 comments on commit 63f79e2

Please sign in to comment.