clarified the running instructions, replaced pip with "python3 -m pip", added --user argument

This commit is contained in:
uh_wot 2020-05-07 02:41:49 +02:00
parent d351343b44
commit b0d92c4b54
1 changed files with 5 additions and 5 deletions

View File

@ -11,12 +11,12 @@ But you can try to run it yourself!<br>
## Running instructions ## Running instructions
### Standard way ### Standard way
NOTE: Python 3 is required for this app. Make sure you tick the option to add python to PATH when installing.<br> NOTE: Python 3 is required for this app. Make sure you tick the option to add Python to PATH when installing.<br>
NOTE: If `pip3` and `python3` are "not recognized commands" try using `pip` and `python` instead<br> NOTE: If `python3` is "not a recognized command" try using `python` instead.<br>
<br> <br>
After installing python install the dependencies using `pip3 install -r requirements.txt`<br> After installing Python open a terminal/command prompt and install the dependencies using `python3 -m pip install -r requirements.txt --user`<br>
Run `python3 -m deemix --help` to see how to use the app<br> Run `python3 -m deemix --help` to see how to use the app in CLI mode.<br>
Run `python3 server.py` to start the server and then connect to 127.0.0.1:33333.<br> Run `python3 server.py` to start the server and then connect to `127.0.0.1:33333`.<br>
Enjoy!<br> Enjoy!<br>
### Easy Windows way ### Easy Windows way