From b0d92c4b54b5307b7e4c702f2eff8aaf9cecab77 Mon Sep 17 00:00:00 2001 From: uh_wot <3631986-uh_wot@users.noreply.gitlab.com> Date: Thu, 7 May 2020 02:41:49 +0200 Subject: [PATCH] clarified the running instructions, replaced pip with "python3 -m pip", added --user argument --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e986e22..48c0eb2 100644 --- a/README.md +++ b/README.md @@ -11,12 +11,12 @@ But you can try to run it yourself!
## Running instructions ### Standard way -NOTE: Python 3 is required for this app. Make sure you tick the option to add python to PATH when installing.
-NOTE: If `pip3` and `python3` are "not recognized commands" try using `pip` and `python` instead
+NOTE: Python 3 is required for this app. Make sure you tick the option to add Python to PATH when installing.
+NOTE: If `python3` is "not a recognized command" try using `python` instead.

-After installing python install the dependencies using `pip3 install -r requirements.txt`
-Run `python3 -m deemix --help` to see how to use the app
-Run `python3 server.py` to start the server and then connect to 127.0.0.1:33333.
+After installing Python open a terminal/command prompt and install the dependencies using `python3 -m pip install -r requirements.txt --user`
+Run `python3 -m deemix --help` to see how to use the app in CLI mode.
+Run `python3 server.py` to start the server and then connect to `127.0.0.1:33333`.
Enjoy!
### Easy Windows way