首页 > 解决方案 > 无法在 Jupyter 笔记本中导入袖扣

问题描述

我在 Jupiter notebook 中导入袖扣时遇到问题。我使用 了pip install cufflinks, pip install cufflinks==0.8.2, conda install cufflinks,conda install -c bioconda cufflinks等以及我在本网站和其他地方找到的其他命令。

当我尝试在本地主机上导入 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'

我不确定还能做什么,以解决此错误。

标签: pythonjupyter-notebook

解决方案


推荐阅读