Skip to content

Instantly share code, notes, and snippets.

@davipatti
Created April 26, 2018 11:17
Show Gist options
  • Save davipatti/5a5a4034695c703b7becfbf62790ba3c to your computer and use it in GitHub Desktop.
Save davipatti/5a5a4034695c703b7becfbf62790ba3c to your computer and use it in GitHub Desktop.
Build pymol from source on mac
#!/bin/bash -e
cd /tmp
wget "https://sourceforge.net/projects/pymol/files/pymol/2/pymol-v2.1.0.tar.bz2"
tar -xf pymol-v2.1.0.tar.bz2
cd pymol
mkdir -p ~/bin/pymol/modules
python2.7 setup.py build install \
--install-scripts=~/bin/pymol \
--install-lib=~/bin/pymol/modules \
--osx-frameworks \
--no-libxml
rm -rf pymol*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment