Linux) GLIBCXX_3.4.26 not found 에러 해결하기(100%는 아님)
2022. 3. 19. 17:23ㆍ꿀팁 분석 환경 설정/Linux 관련 팁
안된다는 분이 있으셔서, 참고만 하시면 좋을 것 같습니다. - 22.09.30
파이썬 코드를 실행하였는데, 에러가 났고, 이 문제를 해결하는 코드는 다음과 같다.
listdc++.so.6 파일에서 GLIBCX 찾기
strings /usr/lib/x86_64-linux-gnu/libstdc++.so.6 | grep GLIBCX
설치 방법(Solution)
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt-get update
sudo apt-get install gcc-4.9 ## 설치가 안되고 진행해도 가능
sudo apt-get upgrade libstdc++6
After this is complete, make sure to run the following:
## 아래 코드는 안해도 작동함
sudo apt-get dist-upgrade
Reference
https://www.codegrepper.com/code-examples/whatever/version+%60GLIBCXX_3.4.26%27+not+found
728x90
'꿀팁 분석 환경 설정 > Linux 관련 팁' 카테고리의 다른 글
Linux,Mac) Python Script 돌릴 때 core 수 제한하는 방법 (0) | 2023.03.31 |
---|---|
Python) SQLite 는 여러 명의 사용자가 사용할 수 있는 지? (0) | 2022.11.06 |
git 에러) remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead. ... The requested URL returned error (0) | 2021.12.02 |
Ubuntu) GPU 확인 방법 (0) | 2021.07.31 |
Linux) sudo password 없이 사용하기 (2) | 2021.07.19 |