Kernel crashed while executing #11221
Answered
by
n1ghtf4l1
n1ghtf4l1
asked this question in
Questions and Answers
-
Beta Was this translation helpful? Give feedback.
Answered by
n1ghtf4l1
Aug 30, 2022
Replies: 1 comment
-
I solved the issue after hours of searching the internet. I debugged the issue and found out there was a file called libstc++.so.6 in my conda virtual environment where I was running this program, that didn't have the required version of GLIBCXX_3.4.15. So, I replaced that file from the one that was created on my global environment i.e in usr/lib/ because I tested the same program by running on the global environment and it worked just fine. Now it works fine even in the virtual environment. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
n1ghtf4l1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I solved the issue after hours of searching the internet. I debugged the issue and found out there was a file called libstc++.so.6 in my conda virtual environment where I was running this program, that didn't have the required version of GLIBCXX_3.4.15.
So, I replaced that file from the one that was created on my global environment i.e in usr/lib/ because I tested the same program by running on the global environment and it worked just fine. Now it works fine even in the virtual environment.