I'm trying to import a module named version, but every time I try to import it, I got these errors:
from version import __version__
ModuleNotFoundError: No module named 'version'
from itertools import izip_longest
ImportError: cannot import name 'izip_longest' from 'itertools' (unknown location)
Failed to install package 'version'
I checked this thread and the accepted answer shows that izip_longest
was renamed to zip_longest
and that's why I can't import the module 'version'
Is there any way to get around this problem and import the module version in PyCharm?