markovmodel / variational

Basis sets, estimators and solvers for the variational approach of conformation dynamics. NOTE: the code has been merged with PyEMMA and is maintained there.
10 stars 5 forks source link

Installation fails: No module named versioneer. #15

Closed fnueske closed 9 years ago

fnueske commented 9 years ago

Cannot install the package using python setup.py install because of this error message.

cwehmeyer commented 9 years ago

added versioneer installation to the repository

fnueske commented 9 years ago

The installation works now. However, whenever I try to import the module, I get this error message:

import variational

ImportError Traceback (most recent call last)

in () ----> 1 import variational /Users/fnueske/Documents/Uni/variational/variational/**init**.py in () 3 # import subpackages such that they are available after the main package import 4 import basissets ----> 5 import estimators 6 import solvers 7 /Users/fnueske/Documents/Uni/variational/variational/estimators/**init**.py in () 1 **author** = 'noe' 2 ----> 3 from moments import RunningCovar /Users/fnueske/Documents/Uni/variational/variational/estimators/moments.py in () 73 import math, sys, numbers 74 import numpy as np ---> 75 from variational.estimators.covar_c import covartools 76 import warnings 77 ImportError: cannot import name covartools Frank, can you have a look at it?
marscher commented 9 years ago

invoke python setup.py develop to compile the binary extensions.

fnueske commented 9 years ago

Thanks, that works.