Pathlib import error
hkamran80 opened this issue · 0 comments
hkamran80 commented
Traceback (most recent call last):
File "hermes/main.py", line 11, in <module>
import ffpass
File "/Users/hkamran/Desktop/Desktop/Projects/hermes2/hermes/hermes/ffpass.py", line 35, in <module>
from pathlib import Path
ImportError: No module named pathlib
Apparently, Python 2 does not have pathlib
built-in, unlike Python 3. pip install pathlib
only installs it for Python 3.