-
Good day, I did [allocate cl.e] and the [cl.e] and [ecl.e] files are found here: My local bin directory is /usr/local/bin Could you please help me understand if this is a problem with the path to the IRAF binaries and how to fix it ? Another user suggested changing the path to something including [/iraf/iraf] where my source IRAF code is also allocated. I attach here three snapshots that show the installation process and the cl.e error. Thank you, I've been struggling with this for the last two days. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
On Ubuntu 20.04, you can install IRAF directly from the repository with the command sudo apt install iraf This will give you a command If you really want to install from source, you need to do the following, as described in https://iraf-community.github.io/install.html: ./install
make linux64
make sysgen 2>&1 | tee build.log From your screenshots, you forgot the second and third step. |
Beta Was this translation helpful? Give feedback.
On Ubuntu 20.04, you can install IRAF directly from the repository with the command
This will give you a command
irafcl
which starts IRAF (mkiraf is not needed there, as irafcl does the necessary setup if needed). You need to remove the settings from your previous steps. That should be the easiest way and is recommended. And since you found the files in/usr/lib/iraf/
, you probably already installed Linux from Ubuntu.If you really want to install from source, you need to do the following, as described in https://iraf-community.github.io/install.html:
From your screenshots, you forgot the second and third step.