Cipy, you can follow the instructions that you're given and which you'll find on a second reading to actually be quite clear i.e. put
if ( -e /home/admiralciprian/Desktop/ECCE/ecce-v7.0/apps/scripts/runtime_setup ) then
source /home/admiralciprian/Desktop/ECCE/ecce-v7.0/apps/scripts/runtime_setup
endif
in your ~/.cshrc file and
if [ -e /home/admiralciprian/Desktop/ECCE/ecce-v7.0/apps/scripts/runtime_setup.sh ]; then
. /home/admiralciprian/Desktop/ECCE/ecce-v7.0/apps/scripts/runtime_setup.sh
fi
in your ~/.bashrc file
If you log out and back in again the changes will take effect. You can also do
source ~/.bashrc in the shell if you're using bash, and
source ~/.cshrc if you're using (t)csh but let's ignore that to avoid confusion.
If you want to see more detailed instructions, you can have a look at http://verahill.blogspot.com -- there are a number of posts on how to compile/install and set up ECCE, e.g.
http://verahill.blogspot.com.au/2012/06/ecce-in-virtual-machine-step-by-step.html
http://verahill.blogspot.com.au/2013/08/487-version-70-of-ecce-out-now.html
[Disclaimer -- I maintain that blog]
|