我在Jupiter笔记本中导入袖扣时遇到问题。
我已经习惯了
pip install cufflinks
,
pip install cufflinks==0.8.2
,conda install cufflinks
,conda install -c bioconda cufflinks
等,以及我在本网站和其他地方发现的其他命令。
当我尝试在localhost上导入Jupyter时,我得到了
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-3-d18380adf441> in <module>()
6 import plotly.graph_objs as go
7 import plotly.figure_factory as ff
----> 8 import cufflinks as cf
9 cf.set_config_file(offline=True, world_readable=True, theme='ggplot')
ModuleNotFoundError: No module named 'cufflinks'
我不确定还能做些什么,以便解决此错误。