learningmatter-mit / VOID

Library to dock molecules in crystal structures, including nanoporous materials
MIT License
8 stars 7 forks source link

conda create -n VOID python=3.7 numpy networkx pymatgen>=2020.3.2 scikit-learn -c conda-forge hangs #3

Closed feacluster closed 3 years ago

feacluster commented 3 years ago

I had to change:

conda create -n VOID python=3.7 numpy networkx pymatgen>=2020.3.2 scikit-learn -c conda-forge

to:

conda create -n VOID python=3.7 numpy networkx pymatgen=2020.3.2 scikit-learn -c conda-forge

because the first command hangs. I believe it has to do with the >= characters. Deleting the > character and it proceeded. Just fyi...