Skip to content

Instantly share code, notes, and snippets.

@lintangsutawika
Forked from goldsborough/install-gcc.sh
Created September 19, 2019 04:11
Show Gist options
  • Save lintangsutawika/e9734cff7f754cd403d75b72ed0bd157 to your computer and use it in GitHub Desktop.
Save lintangsutawika/e9734cff7f754cd403d75b72ed0bd157 to your computer and use it in GitHub Desktop.
Instructions for installing GCC >= 4.9 for PyTorch Extensions
# Instructions for installing GCC 4.9 on various platforms.
# The commands show instructions for GCC 4.9, but any higher version will also work!
# Ubuntu (https://askubuntu.com/questions/466651/how-do-i-use-the-latest-gcc-on-ubuntu/581497#581497)
sudo apt-get install software-properties-common
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9 g++-4.9
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 60 --slave /usr/bin/g++ g++ /usr/bin/g++-4.9
# CentOS (https://www.softwarecollections.org/en/scls/rhscl/devtoolset-3/)
sudo yum install centos-release-scl
sudo yum-config-manager --enable rhel-server-rhscl-7-rpms
sudo yum install devtoolset-3
scl enable devtoolset-3 bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment