The import main workaround did solve the error for someone else. In case it helps, I’m using Python 3.8.10 with the following two libraries installed via pip3.
Turns out it needs a newer hy, then it works. (And in case anyone else has a similar problem and is also a Python noob, pip’s package is probably called python3-pip or something like that. After that, the rest is explained either in the article or by pip itself.)
The
import main
workaround did solve the error for someone else. In case it helps, I’m using Python 3.8.10 with the following two libraries installed via pip3.Thanks!
Turns out it needs a newer
hy
, then it works. (And in case anyone else has a similar problem and is also a Python noob,pip
’s package is probably calledpython3-pip
or something like that. After that, the rest is explained either in the article or bypip
itself.)