I have Anaconda environment on my machine for python 3.6 When I try to install pattern package through pip, it gave an error saying something like
parentheses around print n
Then I tried conda install -c asmeurer pattern=2.5;
as well as conda install -c asmeurer pattern
.
It says
UnsatisfiableError: The following specifications were found to be in conflict: - pattern -> python 2.7* - python 3.6*"
Finally, I got to know that python 3 does not have pattern directly.
So, I tried downloading pattern zip from http://www.clips.ua.ac.be/pattern.
Now, when I ran python ./setup.py install
. It again give errors related to parentheses around print n
I have tried almost everything, but unable to install pattern package in my python 3.6 Anaconda environment. Can someone please help me out here , some workaround for this?