Hi,
I just started out with your tool and run into similar problems as others already reported and wanted to share my solutions, which worked for me.
I followed the installation instructions as indicated here: https://github.com/JoshuaMeyers/DeeplyTough#code-setup
- first issue was the installation of mdtraj, which could not be build the wheel for, instead of the frozen version I used the current version.
- After setting up the installation and tried to run the custom dataset as indicated here: https://github.com/BenevolentAI/DeeplyTough#evaluation, I got an issue with the second conda environment, in deeplytough/misc/utils.py line 142 you used "source activate", my conda could not find the environment anymore, this I changed it to "conda activate"
- Third Issue arose somewhere in the mgltools library, which needs numpy.oldnumerics. As per installation I did not have numpy installed here, and found that the version 1.8.1 will fullfill those requirements.
Long story short:
change requirements.txt to the current version of mdtraj (1.9.7 currently)
install pip install numpy==1.8.1 after activating deeplytough_mgltools environment
change conda environment change call in deeplytough/misc/utils.py line 142 to "conda activate" (dependen on conda version (mine is 4.6)
I hope that this will help you and others facilitating the installation process.
Hi,
I just started out with your tool and run into similar problems as others already reported and wanted to share my solutions, which worked for me.
I followed the installation instructions as indicated here: https://github.com/JoshuaMeyers/DeeplyTough#code-setup
Long story short:
change requirements.txt to the current version of mdtraj (1.9.7 currently)
install pip install numpy==1.8.1 after activating deeplytough_mgltools environment
change conda environment change call in deeplytough/misc/utils.py line 142 to "conda activate" (dependen on conda version (mine is 4.6)
I hope that this will help you and others facilitating the installation process.