| 50 | | This installation did not use sudo privileges, so the install path was changed from {{{/opt/UCSF/Chimera64-2010-08-05}}} to {{{$HOME/src/Chimera64-2010-08-24}}}. To install the desktop menu and icons: |
| 51 | | {{{ |
| 52 | | $HOME/src/Chimera64-2010-08-24/bin/xdg-setup install |
| 53 | | }}} |
| 54 | | |
| 55 | | In addition, I setup sym-links like: |
| 56 | | {{{ |
| 57 | | cd ~/src |
| 58 | | ln -s Chimera64-2010-08-24 Chimera64-daily |
| 59 | | sudo ln -s $HOME/src/Chimera64-daily/bin/chimera /usr/local/bin/chimera-daily |
| 60 | | }}} |
| 61 | | |
| 62 | | If I run a build from svn-source, I create sym-links like: |
| 63 | | {{{ |
| 64 | | cd ~/src |
| 65 | | ln -s Chimera64-build31263 Chimera64-build |
| 66 | | sudo ln -s $HOME/src/Chimera64-build/bin/chimera /usr/local/bin/chimera-build |
| 67 | | }}} |
| 68 | | |
| 69 | | Lastly, a few environment variables are set to simplify executing the new installation programs. If your installation path is different, you will need to set the CHIMERA environment variable to your path. The CHIMERA path must point to a hard-link, not a sym-link, in the directory tree. |
| | 50 | This installation did not use sudo privileges, so the install path was changed from {{{/opt/UCSF/Chimera64-2010-08-05}}} to {{{$HOME/src/Chimera64-daily}}}. To install the desktop menu and icons: |
| | 51 | {{{ |
| | 52 | $HOME/src/Chimera64-daily/bin/xdg-setup install |
| | 53 | }}} |
| | 54 | |
| | 55 | Lastly, a few environment variables are set to simplify executing the new installation programs. If your installation path is different, you will need to set the CHIMERA environment variable to your path. The CHIMERA path must point to a hard-link, not a sym-link, in the directory tree. '''Warning:''' do not set these environment variables for daily work with Chimera, they are to be set for a shell session that is only required during installation of additional python packages into the Chimera distribution of python. |
| 99 | | export CHIMERA=$(cd $HOME/src/Chimera64-build && pwd -P) |
| 100 | | export PATH=$PATH:$CHIMERA/bin/ |
| 101 | | export LD_LIBRARY_PATH=$CHIMERA/lib |
| 102 | | $CHIMERA/bin/easy_install pylint |
| 103 | | $CHIMERA/bin/easy_install pyflakes |
| | 85 | export CHIMERA=$($HOME/src/Chimera64-daily/bin/chimera --root) |
| | 86 | export PATH=${CHIMERA}/bin/:${PATH} |
| | 87 | export LD_LIBRARY_PATH=${CHIMERA}/lib |
| | 88 | ${CHIMERA}/bin/easy_install pylint |
| | 89 | ${CHIMERA}/bin/easy_install pyflakes |