thoughtworksarts / EmoPy

A deep neural net toolkit for emotion analysis via Facial Expression Recognition (FER)
https://thoughtworksarts.io/blog/emopy-emotional-expression-toolkit/
GNU Affero General Public License v3.0
919 stars 264 forks source link

pip install EmoPy does not work #69

Closed markovao closed 3 years ago

markovao commented 4 years ago

Hello,

while running pip install EmoPy I am facing the Error: ERROR: Could not find a version that satisfies the requirement EmoPy (from versions: none) ERROR: No matching distribution found for EmoPy

Can anyone help me with this?

xuv commented 4 years ago

@markovao What is your version of Python?

markovao commented 4 years ago

I use Python 3.8.3

xuv commented 4 years ago

For now, EmoPy requires Python 3.6 to run. You might be able to run it on more recent versions but you might have to apply some changes in the setup files and possibly elsewhere.

markovao commented 4 years ago

I installed Python 3.6.6 as it was described in a readme file, but when I tried to run $ python3.6 -m venv venv, I get the following: -bash: python3.6: command not found

xuv commented 4 years ago

If you have followed the README to install Python3.6, you’ve done so using pyenv. And thus the correct command is:

pyenv exec python3.6 -m venv venv

as stated in the README

markovao commented 4 years ago

$ pyenv exec python3.6 -m venv venv pyenv: python3.6: command not found

The `python3.6' command exists in these Python versions: 3.6.6

Note: See 'pyenv help global' for tips on allowing both python2 and python3 to be found.

That is what I get

Aronja commented 3 years ago

I'm closing this issue as there haven't been any further messages and it seems to be resolved