jupyter / notebook

Jupyter Interactive Notebook
https://jupyter-notebook.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
11.59k stars 4.86k forks source link

ModuleNotFoundError in Jupyter Notebook #6451

Open Pranav-tuli opened 2 years ago

Pranav-tuli commented 2 years ago

import unicodecsv

ModuleNotFoundError Traceback (most recent call last) Input In [1], in <cell line: 1>() ----> 1 import unicodecsv

ModuleNotFoundError: No module named 'unicodecsv'

Raghav-Bell commented 2 years ago

Use csv instead . What is the python version you are using in your env ? Unicode csv does not support all python versions . check here :doc check here : stackoverflow

Jaisingh-Chauhan commented 2 years ago

You` should install it (from the command prompt) using:

conda install unicodecsv OR pip install unicodecsv