【发布时间】:2016-10-10 16:17:21
【问题描述】:
我试着跑 导入 unicodecsv 通过运行 .ipynb 文件在 jupyter 中。 它失败了。 然后我通过 python install 命令安装了 unicodecsv 文件,并在 c\python27 目录中找到了它。但仍然没有发生导入。 应该怎么安装。是否需要放在anaconda安装中
编辑: 显示错误 -
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-9c1521d8df38> in <module>()
2 # 1 #
3 #####################################
----> 4 import unicodecsv
5 ## Read in the data from daily_engagement.csv and project_submissions.csv
6 ## and store the results in the below variables.
ImportError: No module named unicodecsv
【问题讨论】:
标签: python-2.7 package jupyter