I've installed pydot and checked to make sure of this several times. However, when I attempt to import it in a Juptyer notebook file, I keep receiving a Module Not Found error:
ModuleNotFoundError: No module named 'pydot'
When I run pip3 show pydot, I get the following response:
Name: pydot
Version: 1.4.2
Summary: Python interface to Graphviz's Dot
Home-page: https://github.com/pydot/pydot
Author: Ero Carrera
Author-email: ero.carrera@gmail.com
License: MIT
Location: /Users/parkertemple/Library/Python/3.8/lib/python/site-packages
Requires: pyparsing
Required-by:
After, when I run
python3 myscript.py
I get this:
/usr/local/bin/python3: can't open file '/Users/(my user account)/script.py': [Errno 2] No such file or directory
I'm relatively new to the command line and am struggling a bit. Any help would be greatly appreciated.
I'm using mac os. Thank you so much!