InstaPy / instapy-quickstart

💨 Simply get InstaPy up and running in minutes.
GNU General Public License v3.0
765 stars 793 forks source link

cannot import name 'UNICODE_EMOJI' from 'emoji.unicode_codes' #268

Open IacopoOrtis opened 2 years ago

IacopoOrtis commented 2 years ago

Problem: ImportError: cannot import name 'UNICODE_EMOJI' from 'emoji.unicode_codes'

Env: Linux venv, python 3.8

How to reproduce: python3 -m venv instapy source instapy/bin/activate pip3 install instapy python3 quickstart.py -> got error pip3 install emoji unidecode python3 start.py -> got error

MajinBui commented 2 years ago

A workaround for this would be to run the following: pip install emoji==0.5.1

Looks like the newer version of emoji doesn't work with the one currently used in the project.

IacopoOrtis commented 2 years ago

After pip uninstall emoji pip install emoji==0.5.1 the problem persists

romysaputra222 commented 2 years ago

thanks bro