From fb4c04ac412fe80455bf4d044942163467418466 Mon Sep 17 00:00:00 2001 From: grossmj Date: Tue, 17 Jan 2023 09:45:14 +0800 Subject: [PATCH] Update documentation to install gns3-server. Fixes #2124 --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 087d346b..03661a2c 100644 --- a/README.md +++ b/README.md @@ -85,7 +85,7 @@ Dependencies: The following commands will install some of these dependencies: ``` {.bash} -sudo apt-get install python3-setuptools +sudo apt-get install python3-setuptools python3-pip ``` Finally, these commands will install the server as well as the rest of @@ -93,14 +93,15 @@ the dependencies: ``` {.bash} cd gns3-server-master -sudo python3 setup.py install +python3 -m pip install -r requirements.txt +python3 -m pip install . gns3server ``` To run tests use: ``` {.bash} -py.test -v +python3 -m pytest tests ``` ### Docker container