diff options
author | Jesús <heckyel@hyperbola.info> | 2020-12-15 12:57:14 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-12-15 12:57:14 -0500 |
commit | c31c9ca9724b9f658d674a2fed4fd0e4ce0c1d58 (patch) | |
tree | 2a53e38e39130c7fa72ce9269ab2361a4bf076cc /README.md | |
parent | f9461a2e79cd0be50937139eb9d0ad1a55e0578f (diff) | |
download | yt-local-c31c9ca9724b9f658d674a2fed4fd0e4ce0c1d58.tar.lz yt-local-c31c9ca9724b9f658d674a2fed4fd0e4ce0c1d58.tar.xz yt-local-c31c9ca9724b9f658d674a2fed4fd0e4ce0c1d58.zip |
Fix name OS and improved install steps
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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` |