0

In Canopy editor , while executing "from mrjob.job import MRjob" i am getting "ImportError: cannot import name MRjob" , not sure, whats wrong here.

Anybody please suggest. Thanks much in advance

Thanks & Regards, DP

John Vandenberg
  • 474
  • 6
  • 16

1 Answers1

0

The "j" in MRjob should be capitalized.

Try from mrjob.job import MRJob

vy32
  • 28,461
  • 37
  • 122
  • 246
  • 2
    It totally answers the question. The poster has a error. The poster's "j" in `MRjob` is lower-case; it should be upper-case. – vy32 Dec 07 '15 at 01:59