Open data-dude92 opened 4 years ago
Hello @data-dude92, thank you for using phenopy
! I just cut a new release on PyPI, so it has the score_term_sets_basic
method of the scorer class now. This is an important functionality for users who want to use phenopy
as a module in their own code (or a notebook). I'm glad you were able to find a workaround for the anaconda issue on windows. We can try to incorporate some logic to config.py
to detect a user's OS platform in an upcoming release.
Hello,
Thank you for the package.
Two issues when trying to use this in anaconda on Windows 10:
config_directory = os.path.join(os.environ.get('HOME'), f'.{project}')
will give an error and should be changed to
config_directory = os.path.join(os.environ.get('CONDA_PREFIX'), f'.{project}')
Hope this helps other people!
Many thanks