From ef28caec5adcfef2275cb610c62972b743f61367 Mon Sep 17 00:00:00 2001 From: Dee-Why <58548803+Dee-Why@users.noreply.github.com> Date: Sat, 22 Feb 2020 20:08:12 +0800 Subject: [PATCH 1/3] Update README.md My experience of setting up a proper environment. --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 6937a6b..0b81407 100644 --- a/README.md +++ b/README.md @@ -26,6 +26,12 @@ Install these dependencies with `pip3 install ` Once the dependencies are installed, you can run the project. `python3 emotions.py` +If there's something wrong with the versions, try to downgrade your python before you install the depenencies +> pip install python==3.6.2 (or conda install python=3.6.2 if you are using anaconda) +And after you install the dependencies, downgrade your scipy +> pip install scipy==1.2.1 +Ignore the warning"ERROR: tensorflow 2.1.0 has requirement scipy==1.4.1" and run the project +`python3 emotions.py ## To train new models for emotion classification From 2c8a102b9de62e310d3cf8d6b2e1975026b7e8ad Mon Sep 17 00:00:00 2001 From: Dee-Why <58548803+Dee-Why@users.noreply.github.com> Date: Sat, 22 Feb 2020 20:09:53 +0800 Subject: [PATCH 2/3] Update README.md My personal experience of setting up a proper environment. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 0b81407..206cbab 100644 --- a/README.md +++ b/README.md @@ -27,10 +27,10 @@ Once the dependencies are installed, you can run the project. `python3 emotions.py` If there's something wrong with the versions, try to downgrade your python before you install the depenencies -> pip install python==3.6.2 (or conda install python=3.6.2 if you are using anaconda) -And after you install the dependencies, downgrade your scipy +> pip install python==3.6.2 +- And after you install the dependencies, downgrade your scipy > pip install scipy==1.2.1 -Ignore the warning"ERROR: tensorflow 2.1.0 has requirement scipy==1.4.1" and run the project +- Ignore the warning"ERROR: tensorflow 2.1.0 has requirement scipy==1.4.1" and run the project `python3 emotions.py ## To train new models for emotion classification From 3db3e9bb92fa0212e12db9049bc3038be603110f Mon Sep 17 00:00:00 2001 From: Dee-Why <58548803+Dee-Why@users.noreply.github.com> Date: Sat, 22 Feb 2020 20:12:10 +0800 Subject: [PATCH 3/3] Update README.md My personal experience of setting up a proper environment. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 206cbab..cd63e62 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Once the dependencies are installed, you can run the project. `python3 emotions.py` If there's something wrong with the versions, try to downgrade your python before you install the depenencies -> pip install python==3.6.2 +> conda install python=3.6.2 (I used anaconda to get this version) - And after you install the dependencies, downgrade your scipy > pip install scipy==1.2.1 - Ignore the warning"ERROR: tensorflow 2.1.0 has requirement scipy==1.4.1" and run the project