I need the detail information about how to install g95 in ubuntu 12.04 step by step. I have followed the g95 manual but it still did not work.
Asked
Active
Viewed 1.4k times
2
-
2What have, and haven't you tried? At which specific step did it not work? – nanofarad Dec 24 '12 at 13:33
-
The installation instructions have only two steps. Which one of the two steps is giving you trouble? – Tom Brossman Dec 24 '12 at 13:43
-
Step 2. I'm very new in using linux. – anti Dec 24 '12 at 13:53
-
Folder 'g95-install' is located at home/diah/.. So what i have to do now ? – anti Dec 24 '12 at 13:57
1 Answers
5
g95 binary are located in this page.
Download the Linux specific binary from here
Copy the downloaded file to your home directory
cp ~/Downloads/g95-x86-linux.tgz ~/
untar the file
cd ~ tar -zxvf g95-x86-linux.tgz
Create a sym link
sudo ln -s ~/g95-install/bin/i686-pc-linux-gnu-g95 /bin/g95
Make sure that
echo $PATH
list/bin
Now to check the installation you can run the command.
g95 --version
Hope this helps.

devav2
- 36,312
-
-
In addition to these commands, I also had to install lib32z1 as documented in this question – metasequoia Dec 01 '15 at 04:07