You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Two issues when trying to use this in anaconda on Windows 10:
the pip package is outdated and does not (yet) have the score_term_sets_basic function mentioned in the readme as an example. Of course cloning from git solves this.
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
The text was updated successfully, but these errors were encountered: