You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File c:\Users\kaiwe\AppData\Local\Programs\Python\Python312\Lib\site-packages\meeko_init_.py:19
17 from .molsetup import RDKitMoleculeSetup
18 from .molsetup import MoleculeSetup
---> 19 from .molsetup import MoleculeSetupEncoder
20 from .molsetup import Restraint
21 from .molsetup import UniqAtomParams
ImportError: cannot import name 'MoleculeSetupEncoder' from 'meeko.molsetup' (c:\Users\kaiwe\AppData\Local\Programs\Python\Python312\Lib\site-packages\meeko\molsetup.py)
The text was updated successfully, but these errors were encountered:
Looks like a conflict between different versions installed simultaneously. Usually the easiest solution is to start with a new conda/virtual environment and install everything from scratch.
Looks like a conflict between different versions installed simultaneously. Usually the easiest solution is to start with a new conda/virtual environment and install everything from scratch.
Thank you so much! It works after I created a new virtual environment. (In case someone has the same issue, Scipy, rdkit, and gemmi will also need to be installed in the new environment)
The meeko version is 0.6.1
when I run
import meeko
in Jupyter notebookError shows as
ImportError Traceback (most recent call last)
Cell In[8], line 1
----> 1 import meeko
File c:\Users\kaiwe\AppData\Local\Programs\Python\Python312\Lib\site-packages\meeko_init_.py:19
17 from .molsetup import RDKitMoleculeSetup
18 from .molsetup import MoleculeSetup
---> 19 from .molsetup import MoleculeSetupEncoder
20 from .molsetup import Restraint
21 from .molsetup import UniqAtomParams
ImportError: cannot import name 'MoleculeSetupEncoder' from 'meeko.molsetup' (c:\Users\kaiwe\AppData\Local\Programs\Python\Python312\Lib\site-packages\meeko\molsetup.py)
The text was updated successfully, but these errors were encountered: