我试着跑
导入unicodecsv
在jupyter中运行.ipynb文件。
失败了
然后,我通过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

最佳答案

Pip(Python软件包安装程序)软件包管理器也随Python3一起提供,您可以尝试此变体而无需安装Conda(Windows):

python -m pip install unicodecsv

10-08 08:13