diff --git a/README.md b/README.md index 5b65673..457e5ca 100644 --- a/README.md +++ b/README.md @@ -69,12 +69,16 @@ The Youtube API is not used, so no keys or anything are needed. It uses the same Download the zip file under the Releases page. Unzip it anywhere you choose. -### Linux/MacOS +### GNU+Linux/MacOS Download the tarball under the Releases page and extract it. `cd` into the directory and run -``` -pip3 install -r requirements.txt -``` + +1. `cd yt-local` +2. `virtualenv -p python3 venv` +3. `source venv/bin/activate` +4. `pip install -r requirements.txt` +5. `python server.py` + **Note**: If pip isn't installed, first try installing it from your package manager. Make sure you install pip for python 3. For example, the package you need on debian is python3-pip rather than python-pip. If your package manager doesn't provide it, try to install it according to [this answer](https://unix.stackexchange.com/a/182467), but make sure you run `python3 get-pip.py` instead of `python get-pip.py`