Vivaan Singhvi
Vivaan Singhvi
If this is made a feature, I will add it to the interpreter :)
Hey! Looking at this almost a year late, and it seems like instead of doing ```python3 import music ``` you need to do: ```python3 import sys keys=tuple(sys.modules.keys()) for key in...
Upon further inspection this doesn't seem to work anymore. Maybe Python 3.11 is the wrong version?
Looks like it - downgrading to Python3.9 fixed this issue. Seems like they changed how modules work, making that code obsolete in later versions of Python
I was having this issue due to a differing version of the `diff_surfel _rasterization` package (particularly the `glm` third party submodule I think). What fixed it was creating fresh copies...