I am trying to install pyttsx3 using pip3. When I enter pip3 install pyttsx3
, I get the following:
MacBook-Pro:~ CaptStephan$ pip3 install pyttsx3
Traceback (most recent call last):
File "/Users/CaptStephan/anaconda/bin/pip3", line 11, in <module>
load_entry_point('pip==9.0.1', 'console_scripts', 'pip3')()
File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 561, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
File "/usr/local/lib/python2.7/site-packages/pkg_resources/__init__.py", line 2630, in load_entry_point
raise ImportError("Entry point %r not found" % ((group, name),))
ImportError: Entry point ('console_scripts', 'pip3') not found
I am using MacOS Sierra 10.12.6 and Python 3.6.0 :: Anaconda 4.3.1 (x86_64)
I can install it OK with pip (not pip3) but then it doesn't seem to actually work. A search shows the solution is to install with pip3, but that gives rise to the above error.
Edit: updating to Python 3.6.2 corrects this problem, but pyttsx3 does not seem to work correctly.