1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
.. _faq:
.. This page isn't relevant anymore and has been removed from toctree
FAQs
====
1. *Why am I seeing weird "symbol not found" errors while trying to import
mdtraj?*
Let me guess -- you're using a Linux cluster running CentOS 5? Your
system compiler is gcc 4.1?
You need a more recent version of gcc (>= 4.4). You can set the ``CC``
and ``CXX`` environment variables to point to a different compiler.
Unfortunately, installing from conda will not help you here. You must
compile from source on CentOS 5 (or similar).
For Pande lab members on ``vsp-compute``, set the following environment
variables and compile from source ::
$ export CC=gcc44
$ export CXX=g++44
$ python setup.py install
|