notebook icon indicating copy to clipboard operation
notebook copied to clipboard

ModuleNotFoundError in Jupyter Notebook

Open Pranav-tuli opened this issue 3 years ago • 3 comments
trafficstars

Pranav-tuli avatar Jun 14 '22 15:06 Pranav-tuli

import unicodecsv

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

ModuleNotFoundError: No module named 'unicodecsv'

Pranav-tuli avatar Jun 14 '22 15:06 Pranav-tuli

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

Raghav-Bell avatar Jul 01 '22 04:07 Raghav-Bell

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

conda install unicodecsv OR pip install unicodecsv

Jaisingh-Chauhan avatar Sep 02 '22 16:09 Jaisingh-Chauhan