2,684
edits
Line 88: | Line 88: | ||
# Added by CCP4 package manager: | # Added by CCP4 package manager: | ||
. '/Applications/ccp4-7.1/bin/ccp4.setup-sh' | . '/Applications/ccp4-7.1/bin/ccp4.setup-sh' | ||
</pre>If the file does not exist, create it | </pre>If the file does not exist, create it - the easiest way is: | ||
<pre> | |||
echo . /Applications/ccp4-7.1/bin/ccp4.setup-sh > $HOME/.zprofile | |||
</pre> | |||
Become familiar with the concept and ways to run commands as "root" - google "mac osx become root". All the installation tasks that are run in a Terminal window require root privileges, since some of the programs and their links are written to /usr/local/bin. (As an alternative that does not require root for installation, one may create a directory $HOME/bin and use that for the programs and links. That would also require modification of the $PATH, by a one-time <code>echo 'export PATH=$PATH:$HOME/bin' >> ~/.profile</code>) | Become familiar with the concept and ways to run commands as "root" - google "mac osx become root". All the installation tasks that are run in a Terminal window require root privileges, since some of the programs and their links are written to /usr/local/bin. (As an alternative that does not require root for installation, one may create a directory $HOME/bin and use that for the programs and links. That would also require modification of the $PATH, by a one-time <code>echo 'export PATH=$PATH:$HOME/bin' >> ~/.profile</code>) |