William Bradford Quentin Bordelon Thomas Denny Nihal Mohapatro Vijay Penumarthy
Imagine if learning guitar was like playing guitar hero.
- Ensure that the latest version of python is installed.
# if on windows
python --version
# if on macOS/linux
python3 --version- Ensure that pip is also installed.
# if on windows
pip --version
# if on macOS/linux
pip3 --version- Ensure git is installed.
git --versionAll data and code are contained within this repository meaning that anyone can run the experiments locally and grab the ouputs.
- Clone the repository
git clone https://github.com/MontyPython-HTML/WICSHack26.git GuitarMonkey
cd GuitarMonkey- Create and source the python virtual environment
# if on windows
python -m venv .venv
.\.venv\Scripts\activate
# if on macOS/Linux
python3 -m venv .venv
source .venv/bin/activate
- Install the packages from the requirements.txt file
pip install -r requirements.txt