instapy-quickstart icon indicating copy to clipboard operation
instapy-quickstart copied to clipboard

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

Open IacopoOrtis opened this issue 3 years ago • 3 comments

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

IacopoOrtis avatar Jul 17 '22 09:07 IacopoOrtis

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.

MajinBui avatar Jul 20 '22 04:07 MajinBui

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

IacopoOrtis avatar Jul 20 '22 06:07 IacopoOrtis

thanks bro

romysaputra222 avatar Sep 13 '22 15:09 romysaputra222