2

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.

Tim
  • 32,861
  • 27
  • 118
  • 178
anti
  • 31

1 Answers1

5

g95 binary are located in this page.

Download the Linux specific binary from here

  1. Copy the downloaded file to your home directory cp ~/Downloads/g95-x86-linux.tgz ~/

  2. untar the file

    cd ~
    tar -zxvf g95-x86-linux.tgz
    
  3. Create a sym link

    sudo ln -s ~/g95-install/bin/i686-pc-linux-gnu-g95  /bin/g95
    
  4. Make sure that echo $PATH list /bin

  5. Now to check the installation you can run the command.

    g95 --version
    

Hope this helps.

devav2
  • 36,312