Fix name OS and improved install steps

This commit is contained in:
Jesús 2020-12-15 12:57:14 -05:00
parent f9461a2e79
commit c31c9ca972
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -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`