In my python project I've been added :
from tethne.model.corpus import mallet
but my problem is that when I'm running my project I see these errors in my pycharm console:
Traceback (most recent call last):
File "D:/Python-Workspace(s)/BehnazDemo/Demo.py", line 1, in <module>
from tethne.model.corpus import mallet
File "C:\Users\Administrator\AppData\Local\Programs\Python\Python35-32\lib\site-packages\tethne-0.8-py3.5.egg\tethne\__init__.py", line 20, in <module>
from tethne.classes.paper import Paper
File "C:\Users\Administrator\AppData\Local\Programs\Python\Python35-32\lib\site-packages\tethne-0.8-py3.5.egg\tethne\classes\paper.py", line 5, in <module>
from tethne.classes.feature import Feature, feature
File "C:\Users\Administrator\AppData\Local\Programs\Python\Python35-32\lib\site-packages\tethne-0.8-py3.5.egg\tethne\classes\feature.py", line 20, in <module>
from itertools import chain, izip
ImportError: cannot import name 'izip'
How can I solve this issue?
Thanks.