2,684
edits
Line 88: | Line 88: | ||
== Mac (Intel) == | == Mac (Intel) == | ||
=== personal installation === | === personal installation (experimental writeup) === | ||
'''Preparation''': | '''Preparation''': | ||
* make sure your $PATH includes your $HOME/bin - the programs will be put into that directory. To achieve this, open a Terminal window, and then | * make sure your $PATH includes your $HOME/bin - the programs will be put into that directory. To achieve this, open a Terminal window, and then | ||
Line 95: | Line 95: | ||
echo "export PATH=$HOME:$HOME/bin" >> .bashrc | echo "export PATH=$HOME:$HOME/bin" >> .bashrc | ||
</pre> | </pre> | ||
* create | * create the $HOME/bin and $HOME/Applications directories. Still in the Terminal window, type | ||
<pre> | <pre> | ||
mkdir $HOME/bin | mkdir $HOME/bin | ||
mkdir $HOME/Applications | |||
</pre> | </pre> | ||
'''To install generate_XDS.INP''': | '''To install generate_XDS.INP''': | ||
Line 115: | Line 116: | ||
(for older OS X, that would be | (for older OS X, that would be | ||
<pre> | <pre> | ||
cd $HOME/bin | |||
curl -L -o - ftp://ftp.mpimf-heidelberg.mpg.de/pub/kabsch/XDS-OSX10.5.8_Darwin9.8.0.tar.gz | tar xvf - | curl -L -o - ftp://ftp.mpimf-heidelberg.mpg.de/pub/kabsch/XDS-OSX10.5.8_Darwin9.8.0.tar.gz | tar xvf - | ||
ln -sf XDS-OSX10.5.8_Darwin9.8.0/* . | ln -sf XDS-OSX10.5.8_Darwin9.8.0/* . | ||
Line 120: | Line 122: | ||
There is also a 32bit tarfile at the same site, for OS X 10.4.11; the installation would be similar) | There is also a 32bit tarfile at the same site, for OS X 10.4.11; the installation would be similar) | ||
'''To install [[XDS-Viewer]]''', click https://sourceforge.net/project/platformdownload.php?group_id=239755 , install | '''To install [[XDS-Viewer]]''', click https://sourceforge.net/project/platformdownload.php?group_id=239755 , install into your $HOME/Applications, and then | ||
ln -s /Applications/XDS-Viewer.app/Contents/MacOS/xds-viewer-bin $HOME/bin/xds-viewer | ln -s $HOME/Applications/XDS-Viewer.app/Contents/MacOS/xds-viewer-bin $HOME/bin/xds-viewer | ||
'''To install [[XDSSTAT]]''', | '''To install [[XDSSTAT]]''', | ||
<pre> | <pre> | ||
Line 129: | Line 131: | ||
chmod a+x xdsstat | chmod a+x xdsstat | ||
</pre> | </pre> | ||
'''To install [[XDSGUI]]''', please download from ftp://turn5.biologie.uni-konstanz.de/pub/xdsgui.dmg and then | '''To install [[XDSGUI]]''', please download from ftp://turn5.biologie.uni-konstanz.de/pub/xdsgui.dmg, install into $HOME/Applications and then | ||
ln -s /Applications/xdsgui.app/Contents/MacOS/xdsgui $HOME/bin/xdsgui | ln -s $HOME/Applications/xdsgui.app/Contents/MacOS/xdsgui $HOME/bin/xdsgui | ||
=== system-wide installation (requires root permission) === | === system-wide installation (requires root permission) === |