Created
April 7, 2020 06:51
-
-
Save gglin001/3aeb00bc7125ace80c64b4773ad53713 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
centos7 use Developer Toolset 7 | |
因在部署pytorch时, 需要gcc的版本至少为4.9, 而centos7的默认版本为4.8.5, 可用一下方式解决 | |
# install scl | |
sudo yum install centos-release-scl | |
# install all devtoolsset | |
# sudo yum install devtoolset-7 | |
# install gcc | |
sudo yum install devtoolset-7-gcc | |
sudo yum install devtoolset-7-binutils | |
# load env | |
scl enable devtoolset-7 bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment