Closed electricalgorithm closed 3 years ago
Solved with changing Home to my C:/Users/gokha folder but not every Windows user can deal with this.
According to https://stackoverflow.com/questions/4028904/how-to-get-the-home-directory-in-python, In file, cemu/const.py:
HOME = os.getenv("HOME")
works only on linux, while this is more cross-platform:
HOME = os.path.expanduser("~")
Python 3.7.0, installed using pip 10.0.1