diff --git a/README.md b/README.md index 79a9a26e6..bdc02bae9 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,18 @@ source env/Scripts/activate ``` pip install -r requirements.txt ``` +>**Note** - Because the code is run on different unrestricted environments, some libraries maybe deprecated or outdated in relation to the python version you use. +> If the installation fails due to this, run the command below: +> ``` +> pip list --outdated +> ``` +> A list of outdated libraries will be shown in your terminal. +> Run this command for every library: +> ``` +> pip install -U +> ``` +> ## OR +> Remove the versions numbers attached to every library and run dependency installations without specific versions 5. **Run the development server:** ``` diff --git a/requirements.txt b/requirements.txt index 16d8ace89..d5479344c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -babel==2.9.0 -python-dateutil==2.6.0 -flask-moment==0.11.0 -flask-wtf==0.14.3 -flask_sqlalchemy==2.4.4 +babel +python-dateutil +flask-moment +flask-wtf +flask_sqlalchemy