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]