Skip to content

Commit cf7e799

Browse files
authored
Update README.md to remove python3
1 parent b560f5f commit cf7e799

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ Since the local app uses OpenAI models, you should first deploy it for the optim
146146
1. Run these commands to install the web app as a local package (named `fastapi_app`), set up the local database, and seed it with test data:
147147
148148
```bash
149-
python3 -m pip install -e src/backend
149+
python -m pip install -e src/backend
150150
python ./src/backend/fastapi_app/setup_postgres_database.py
151151
python ./src/backend/fastapi_app/setup_postgres_seeddata.py
152152
```
@@ -165,7 +165,7 @@ Since the local app uses OpenAI models, you should first deploy it for the optim
165165
3. Run the FastAPI backend (with hot reloading). This should be run from the root of the project:
166166
167167
```shell
168-
python3 -m uvicorn fastapi_app:create_app --factory --reload
168+
python -m uvicorn fastapi_app:create_app --factory --reload
169169
```
170170
171171
Or you can run "Backend" in the VS Code Run & Debug menu.

0 commit comments

Comments
 (0)