This error indicates pip3 is not installed or not in your system PATH. pip3 is used for Python 3 package management.
Fixes How to fix 'pip3: command not found' in Python
# How to fix 'pip3: command not found' in Python
pip3 is the package manager for Python 3. Unlike pip (which can point to Python 2 or 3), pip3 explicitly targets Python 3. When the system cannot find pip3, it means either Python 3 was installed without pip, or pip3 is not in the executable PATH.
Review the error message above and identify which cause applies to your situation. Run additional diagnostics if needed.
Follow the corresponding solution from the causes section above.
Once you've addressed the root cause, try running 'pip install' again.