赞
踩
1.
2022-02-01 Windows下配置深度学习环境(Ubuntu+Anaconda+CUDA+Pytorch+gcc) - 知乎
对于成功编译后,在运行的时候出现报错:
libstdc++.so.6: version `GLIBCXX_3.4.29' not found
这个主要是库文件没有更新,可以使用如下代码
conda install -c conda-forge gxx_linux-64
对我的没有效果,继续使用如下方法:
添加软件源:
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
不报错就继续
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test
- sudo apt update -y
- sudo apt upgrade -y
如果该命令报错command not found,就:
- apt-get update
- apt-get install python-software-properties
- apt-get install apt-file
- apt-file update
- apt-get install software-properties-common
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test
当出现Press [ENTER] to continue or ctrl-c to cancel adding it 时,按一下回车键
- sudo apt-get update -y
- sudo apt upgrade -y
最后再启动服务,发现正常启动。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。