File: faq.rst

package info (click to toggle)
mdtraj 1.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 76,096 kB
  • sloc: ansic: 30,371; python: 18,165; cpp: 5,443; xml: 1,252; makefile: 186; sh: 45
file content (25 lines) | stat: -rw-r--r-- 753 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