0

I have a library that I've imported and have used within PyCharm with no problem. However, I would like to work with this repository within a Jupyter notebook for ease of debugging (my Pycharm has a mysterious bug on its debugger...). I keep getting "No module named 'ListManagement". How do I install this github repository so I can use it in Jupyter. Appreciate your help!

1 Answers1

0

Maybe you got different versions of python installed in your system. Do, /usr/bin/python3 if the module was installed for py3 and just /usr/bin/python for py2 before running the script.

Refer the Installed module using pip, not found for more.

Mitesh
  • 1,544
  • 3
  • 13
  • 26
  • I just realized the repository is a private one. I don't know why PyCharm has no issue with importing it but Jupyter does. Importing it woudln't work either since it's a private github repostory, correct? So first, I'd have to make it public first? –  Jul 28 '19 at 02:50
  • I dont think bring a 'private repository' is causing the problem. However, you can try to make it public just to make sure, the problem lies there – Mitesh Jul 28 '19 at 03:07