Entering edit mode
8.0 years ago
stardust
•
0
Having problems with the installation of HTSeq on Ubuntu 16.1. Followed instructions step by step and the installation seemed to go with no errors. But later when testing if the module is installed by typing
>>>import HTSeq
ImportError: /home/ivan/anaconda2/bin/../lib/libstdc++.so.6: version `GLIBCXX_3.4.21' not found (required by /home/ivan/.local/lib/python2.7/site-packages/HTSeq-0.6.1p1-py2.7-linux-x86_64.egg/HTSeq/_StepVector.so)
You have two versions of libstdc++, one from the system and the other from conda. Apparently, you compiled HTSeq with the system libstdc++, but the library found the conda version when running. The solution depends on how much you use conda and your system configuration. Hard to say without seeing these.