Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 1.11 KB

README.md

File metadata and controls

17 lines (13 loc) · 1.11 KB

Welcome!

To run this locally, first you need a local clone of this repo. That is the easiest part! Just go ahead and clone it in your own preferred way. I.e. for HTTPS:

git clone https://github.com/mariepauline/speech-recognition.git.

Then you need to:

  1. Open the folder in your preferred IDE or navigate to the folder in the terminal
  2. Have Python installed. Go to https://www.python.org/ and download for your OS. You can verify that it is installed correctly by running python -V to check the installed version number.
  3. Activate the virtual environment by running:
    • On Windows: env\Scripts\activate
    • On macOS/Linux: source env/bin/activate
  4. Make sure that all the necessary packages are installed by running:
    • pip install -r requirements.txt
  5. With the virtual environment up and running, start the Jupyter Notebook by either starting the notebook in the terminal with: jupyter notebook and navigating to the .ipynb file in your browser, or you can use your favorite IDEs tools. Visual Studio i.e. seems to support it well.
  6. Run the code! You can also customize it and run it however you want.