I am running a code in jupyter Notebook an i got this error for import pydotplus
:
ModuleNotFoundError: No module named 'pydotplus'
However after trying to install using this command: !pip install pydotplus --user
I still have the same error, it is not resolved. Noting that I could not install pydotplus
using the following command:
!pip install pydotplus
I also tried import sys !{sys.executable} -m pip install <package_name>
after reading that it must be installed globally this way, but I got an error saying: 'C:\Program' is not recognized as an internal or external command, operable program or batch file
I would appreciate any help. Thanks :)