I can install hask with Python 2 with no issues, but in Python 3 I get the error:
Traceback (most recent call last):
File "setup.py", line 1, in <module>
import hask
File "/home/user/Downloads/hask/hask/__init__.py", line 9, in <module>
import Data.Char
ModuleNotFoundError: No module named 'Data'
This is presumably because relative imports are gone in Python 3. Is there any way to get it working regardless? I'm really keen to use this.
I can install
haskwith Python 2 with no issues, but in Python 3 I get the error:This is presumably because relative imports are gone in Python 3. Is there any way to get it working regardless? I'm really keen to use this.