To whom it will concern
My OS system is MacOS 10.12.6
I have installed Qutip using " conda install qutip" successful from the Terminal. The successful message is like this
# All requested packages already installed.
# packages in environment at /Users/myusername/anaconda:
# qutip 4.2.0 np113py36_2 conda-forge
Howerver, when I use python to import the qutip, I always get a error message: No module named qutip.cy.spmatfuncs
Is there anyone who can help me out? Thanks very much.
The following is the command I input in the Python Input line. Thanks for your kindness help.
In [1]: from qutip import *
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-674d9281af88> in <module>()
----> 1 from qutip import *
/Users/tamintai/qutip/__init__.py in <module>()
169
170 # core
--> 171 from qutip.qobj import *
172 from qutip.states import *
173 from qutip.operators import *
/Users/tamintai/qutip/qobj.py in <module>()
58 import qutip.settings as settings
59 from qutip import __version__
---> 60 from qutip.fastsparse import fast_csr_matrix, fast_identity
61 from qutip.cy.ptrace import _ptrace
62 from qutip.permute import _permute
/Users/tamintai/qutip/fastsparse.py in <module>()
404 #Need to do some trailing imports here
405 #-------------------------------------
--> 406 from qutip.cy.spmath import (zcsr_transpose, zcsr_adjoint, zcsr_mult)
/Users/tamintai/qutip/cy/__init__.py in <module>()
----> 1 from qutip.cy.spmatfuncs import *
ModuleNotFoundError: No module named 'qutip.cy.spmatfuncs'
===============================================message end===============================================
Best regards
Tamin