-1

I am facing this weird issue where I have a jupyter notebook which is giving me ModuleNotFound error on Library but I did not face same issue on other notebook. Path for notebook1 is C:\Users\Avinash Jha\Documents\Python\SB\GITHUB\project1\Notebooks\xyz.py

enter image description here

Path for notebook2 is C:\Users\Avinash Jha\Documents\Python\SB\GITHUB\project2\Notebooks\acb.py

Screenshot with error

CMD screenshot when i tried to install the module.

enter image description here

James Z
  • 12,209
  • 10
  • 24
  • 44

1 Answers1

1

May be your jupyter notebook is running in different virtual environment try to run same pip command from notebook with append '!' like this

!pip install library
autitya
  • 71
  • 5