Last active
February 2, 2023 15:13
-
-
Save PlethoraChutney/fd34e3137044cb1e1efc881157e0e17b to your computer and use it in GitHub Desktop.
MolNodes blender fix commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conda create --name blender python==3.10 biotite==0.35.0 mdanalysis==2.2.0 -c conda-forge -y | |
CONDAENV=$(conda info --envs | grep blender | awk -F ' ' '{print $2}') | |
pushd /Applications/Blender.app/Contents/Resources/3.4/ > /dev/null | |
mv python old_python | |
ln -s $CONDAENV python | |
popd > /dev/null |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment