Skip to content

Commit

Permalink
Merge pull request #61 from developmentseed/fix/readme-install-commands
Browse files Browse the repository at this point in the history
Fix install command order
  • Loading branch information
j08lue authored Aug 16, 2024
2 parents 2be19eb + e57c4ae commit 940c559
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
## Running Locally

```bash
# It's recommanded to use virtual environment
python -m pip install --upgrade virtualenv
virtualenv .venv
# It's recommended to install dependencies in a virtual environment
python -m venv .venv
source .venv/bin/activate

python -m pip install -e . uvicorn
source .venv/bin/activate
export TEST_ENVIRONMENT=true # set this when running locally to mock redis
uvicorn titiler.xarray.main:app --reload
```

Expand Down

0 comments on commit 940c559

Please sign in to comment.