Download the following debian packages either by navigating to the url or by doing a wget
Post Download install the packages by using a software installer or using the
$ sudo dpkg -i <package.deb>
# !usr/bin/bash | |
echo "Downloading gcc-6-base" && \ | |
cd /tmp/ && wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gcc-6/gcc-6-base_6.4.0-17ubuntu1_amd64.deb && \ | |
echo "Downloading libgfortran3" && \ | |
cd /tmp/ && wget http://archive.ubuntu.com/ubuntu/pool/universe/g/gcc-6/libgfortran3_6.4.0-17ubuntu1_amd64.deb && \ | |
echo "Installing gcc-6-base" && \ | |
cd /tmp/ && sudo dpkg -i gcc-6-base_6.4.0-17ubuntu1_amd64.deb && \ | |
echo "Installing libgfortran3" && \ | |
cd /tmp/ && sudo dpkg -i libgfortran3_6.4.0-17ubuntu1_amd64.deb |
Download the following debian packages either by navigating to the url or by doing a wget
Post Download install the packages by using a software installer or using the
$ sudo dpkg -i <package.deb>
thank you so much for this!
Thank you very much!
Thanks. This helped me to run Amber18 on Ubuntu20.04.