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:
- Open the folder in your preferred IDE or navigate to the folder in the terminal
- 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. - Activate the virtual environment by running:
- On Windows:
env\Scripts\activate
- On macOS/Linux:
source env/bin/activate
- On Windows:
- Make sure that all the necessary packages are installed by running:
pip install -r requirements.txt
- 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. - Run the code! You can also customize it and run it however you want.