File: faq.rst

package info (click to toggle)
mdtraj 1.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 79,324 kB
  • sloc: python: 25,217; ansic: 6,266; cpp: 5,685; xml: 1,252; makefile: 192
file content (25 lines) | stat: -rw-r--r-- 752 bytes parent folder | download | duplicates (2)
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