pip install fails: django-admin.py error

Asked by ebryer

I installed using the pip method. Afterward, as instructed I typed:
PYTHONPATH=/opt/graphite/webapp django-admin.py migrate --settings=graphite.settings
and I get
ImportError: cannot import name 'pyparsing_unicode'

Question information

Language:
English Edit question
Status:
Solved
For:
Graphite Edit question
Assignee:
No assignee Edit question
Solved by:
ebryer
Solved:
Last query:
Last reply:
Revision history for this message
ebryer (cavalcade) said :
#1

pyparsing was installed with both pip and dnf

sudo dnf remove python3-pyparsing
pip3 install pyparsing

Fixed the problem.