Skip to content

Runnig app on localhost

Wojciech Fiołka edited this page Sep 2, 2023 · 1 revision

First you must have git, ffmpeg, python and pip installed. Then you install venv package from pip (pip install venv) Next go to your terminal (macOS/linux) or command prompt (Windows) and follow these steps (you can copy and paste commands typed in the brackets:

  1. Clone the repo - git clone git@github.com:Kabanosk/whisper-website.git
  2. Go to repo directory - cd whisper-website
  3. Create virtual environment - python3 -m venv venv
  4. Activate the environment - source venv/bin/activate/. venv/bin/activate
  5. Install requirements - pip install -r requirements.txt
  6. Go to src directory - cd src
  7. Run the run.py file - python3 run.py
  8. Go to your browser and type http://127.0.0.1:8000/ if the browser doesn't open
Clone this wiki locally