We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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'
The text was updated successfully, but these errors were encountered:
Seems like you're missing corner.py. You can install via conda or pip:
corner.py
conda install corner --- or --- pip install corner
How did you install msmexplorer?
msmexplorer
Sorry, something went wrong.
No branches or pull requests
Upon trying to import msmexplorer, I get the following error.
The text was updated successfully, but these errors were encountered: