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
If I install jupyter nootbook from multiref enviroment and use it to open Example.ipynb, it leads to Kernel error. If I click Kernel error it lead to KeyError: 'loop'.
If I created a python file
import MultirefPredict
import qcelemental
mol = qcelemental.models.Molecule.from_data("""
O 0.000000000000 0.000000000000 -0.068516245955
H 0.000000000000 -0.790689888800 0.543701278274
H 0.000000000000 0.790689888800 0.543701278274
""")
b1 = MultirefPredict.diagnostic_factory("B1",molecule=mol, molname="water", record=False).computeDiagnostic()
I got
Traceback (most recent call last):
File "test.py", line 8, in <module>
""")
File "/home/.../intel/oneapi/intelpython/latest/envs/multiref/lib/python3.6/site-packages/qcelemental/models/molecule.py", line 559, in from_data
return cls(orient=orient, validate=validate, **input_dict)
File "/home/.../intel/oneapi/intelpython/latest/envs/multiref/lib/python3.6/site-packages/qcelemental/models/molecule.py", line 126, in __init__
values = self.__values__
AttributeError: 'Molecule' object has no attribute '__values__'
what would be the reason for it and how to fix it?
The text was updated successfully, but these errors were encountered:
Here are some possible reasons for the error you met.
(1) Have you installed Psi4? Multirefpredict can use several quantum chemistry packages. By default, if you don't specify, it uses Psi4 and you need to install it.
(2) By installing from the conda_env file, qcelemental is guaranteed to be exactly the same version as I installed. Hence I don't think it's caused by qcelemental.
(3) Maybe it's because of the different version of openbabel? The conda_env file didn't specify the openbabel version. In my output file, it says " UserWarning: "import openbabel" is deprecated, instead use "from openbabel import openbabel"
warnings.warn('"import openbabel" is deprecated, instead use "from openbabel import openbabel"')'
I may be using an older version of openbabel than you. Here's the version I use:
Hi,
I installed MultiPredict as https://multirefpredict.readthedocs.io/en/latest/installation.html (
cd dev_tools/conda_envs
iscd dev_tools/condaenvs
in my installation)If I install jupyter nootbook from
multiref
enviroment and use it to openExample.ipynb
, it leads toKernel error
. If I clickKernel error
it lead toKeyError: 'loop'
.If I created a python file
I got
what would be the reason for it and how to fix it?
The text was updated successfully, but these errors were encountered: