-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Installation without conda and pip #281
Comments
Hi, currently only pip and conda are supported really - could you provide a source to the security concerns with the newest Python? Are these security concerns also regarding conda? The closest you can come to a shell script installation right now is downloading the pypi binaries and putting them in place. But that probably defeats the purpose a bit. Thanks! |
Hi, when I am trying to run the "vamp.ipynb" notebook under example folder the deeptime project after unpacking the binary distribution file I got from "https://pypi.org/project/deeptime/#files" to path "/usr/lib64/python3.11/site-packages". Code that I ran: vamp_estimator = VAMP( Errors I gotModuleNotFoundError Traceback (most recent call last) File /usr/lib/python3.11/site-packages/deeptime/init.py:6 File /usr/lib/python3.11/site-packages/deeptime/data/init.py:76 File /usr/lib/python3.11/site-packages/deeptime/data/_datasets.py:8 File /usr/lib/python3.11/site-packages/deeptime/data/_pbf_simulator.py:3 ModuleNotFoundError: No module named 'threadpoolctl' |
that is because you are simply unpacking, opposed to using pip as it is intended. deeptime is not self-contained as a package but has dependencies which again can have dependencies of their own etc. That is something that pip and conda resolve. If you do not want to use them, you have to install these dependencies manually. This file defines the list of requirements: https://github.com/deeptime-ml/deeptime/blob/main/pyproject.toml |
Hi, I'm currently trying to install the deeptime for the project of investigating conformation kinetics of an ion channel. But I encounter problems when trying to install it.
Since I am use the latest python version and that version is not recommended to use pip to install python packages any more for security reasons. So I wonder if there are other ways to install deeptime. It may be great if there is a way to install it using just shell scripts. Thank you all.
The text was updated successfully, but these errors were encountered: