Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

No module named 'corner' #123

Open
nnj1 opened this issue Oct 23, 2018 · 1 comment
Open

No module named 'corner' #123

nnj1 opened this issue Oct 23, 2018 · 1 comment

Comments

@nnj1
Copy link

nnj1 commented Oct 23, 2018

Upon trying to import msmexplorer, I get the following error.

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-161-36c499e6e3bd> in <module>()
----> 1 import msmexplorer as msme
      2 import numpy as np
      3 txx = np.concatenate(tica_trajs)
      4 _ = msme.plot_histogram(txx)

~/anaconda3/lib/python3.6/site-packages/msmexplorer/__init__.py in <module>()
----> 1 from .plots import *
      2 
      3 from .version import version as _version
      4 __version__ = _version

~/anaconda3/lib/python3.6/site-packages/msmexplorer/plots/__init__.py in <module>()
      2 from .msm import *
      3 from .tpt import *
----> 4 from .projection import *
      5 from .cluster import *
      6 from .misc import *

~/anaconda3/lib/python3.6/site-packages/msmexplorer/plots/projection.py in <module>()
      3 from matplotlib import pyplot as pp
      4 
----> 5 from corner import corner
      6 from seaborn.distributions import (_scipy_univariate_kde, _scipy_bivariate_kde)
      7 

ModuleNotFoundError: No module named 'corner'
@cxhernandez
Copy link
Member

Seems like you're missing corner.py. You can install via conda or pip:

conda install corner
--- or ---
pip install corner

How did you install msmexplorer?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants