diff --git a/README.md b/README.md index 93063c6..f6bcfc7 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,14 @@ To run this proxy locally on your own machine, follow these steps: 3. Create a virtual environment: ```python -m venv venv``` -4. Install the required libraries: +4. Activate virtual environment: +```source venv/bin/activate``` + +5. Install the required libraries: ```pip install -r requirements.txt``` -5. Run the FastAPI server: -```uvicorn --app-dir app/ main:app --reload``` +6. Run the FastAPI server: +```./venv/bin/uvicorn --app-dir app/ main:app --reload``` ## Using the Pre-built Server 🌐 diff --git a/frontend/pages/index.html b/frontend/pages/index.html index 49cad23..b891b1e 100644 --- a/frontend/pages/index.html +++ b/frontend/pages/index.html @@ -116,10 +116,14 @@

Running the Proxy Locally 🖥️

cd groqcall
-
  • SCreate a virtual environment:
  • +
  • Create a virtual environment:
  • python -m venv venv
    +
  • Activate the virtual environment:
  • +
    source venv/bin/activate
  • Install the required libraries:
  • Running the Proxy Locally 🖥️
                             
  • Run the FastAPI server:
  • uvicorn --app-dir app/ main:app --reload
    + >.venv/bin/uvicorn --app-dir app/ main:app --reload

    Using the Pre-built Server 🌐