From 497351f31fdf88c3fe260be669a68f1eba8e33b4 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Wed, 3 May 2023 22:55:28 +0700 Subject: [PATCH] Update readme and installation requirement --- README.md | 5 +++++ install.sh | 14 +++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7ffa500..eb0c236 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,11 @@ along with this program. If not, see https://www.gnu.org/licenses/. You need this libraries to use CostaPy: - cherrypy +- cherrypy-cors - mako - mysql-connector - bcrypt +- pyjwt[crypto] You can install it with run this command @@ -34,11 +36,14 @@ You can install it with run this command Here is the completed command + sudo apt-get install -y python3-pip pip install --upgrade pip pip install cherrypy + pip install cherrypy-cors pip install mako pip install mysql-connector pip install bcrypt + pip install pyjwt[crypto] ## Usage diff --git a/install.sh b/install.sh index edc60b7..2437183 100644 --- a/install.sh +++ b/install.sh @@ -1,8 +1,8 @@ sudo apt-get install -y python3-pip -pip3 install --upgrade pip -pip3 install cherrypy -pip3 install cherrypy-cors -pip3 install mako -pip3 install mysql-connector -pip3 install bcrypt -pip3 install pyjwt[crypto] +pip install --upgrade pip +pip install cherrypy +pip install cherrypy-cors +pip install mako +pip install mysql-connector +pip install bcrypt +pip install pyjwt[crypto]