I want to install an app, Zacros. First, I have to install the Gfortran compiler. I have done that. After I have to follow these instructions.
Compiling should be done using a terminal. It simply comes down to the following:
cd path/to/source/of/Zacros
mkdir build # If it does not exist yet
cd build
cp path/to/makefiles/makefile-gfortran-parallel-unix makefile make
After these procedure I am supposed to find zacros.x in the build directory However the only thing I have is No such file or directory
Thanks for your help! P. D. I have the academic version. So, I can freely use it. I do not know if I have to start from another user, super/user or something like this.
apt
command. In your case it seems you have a tar.gz – Pablo Bianchi Oct 08 '19 at 17:43cp path/to/makefiles/makefile-gfortran-parallel-unix makefile make
looks like it needs to be 2 separate commands - either place themake
on a separate line or separate them with a semicolon ascp path/to/makefiles/makefile-gfortran-parallel-unix makefile; make
– steeldriver Oct 08 '19 at 17:59cd path/to/source/of/Zacros
Justmkdir Zacros
and put all your files in there. – EODCraft Staff Oct 08 '19 at 18:27