0

I have searched for the last couple days on this, but I can't seem to figure it out. I am trying to install a pyttsx module for python 3.x, and have looked at multiple people saying I need to change the code in the init, engine, and driver files for the pyttsx module, which I have done, but pyttsx still doesn't seem to work. I am trying to install a module from here, but I don't know how to install GitHub packages/repos to python. I have tried pip install git+http://"URL_goes_here", but i can't seem to get it to work. I have the git client installed as well, which one of the answers said to do here.

I have python 3.x and windows 10.

Community
  • 1
  • 1
  • Did you try with https? As in: `pip install git+https://github.com/RapidWareTech/pyttsx`. – VonC Mar 02 '17 at 21:09
  • Did you install the dependency (pywin32)? https://sourceforge.net/projects/pywin32/files/pywin32/ – kgui Mar 02 '17 at 21:11
  • @[VonC](http://stackoverflow.com/users/6309/vonc) I get an error that says `could not find a version that satisfies the requirement win32com (from pyttsx==1.2) (from versions: ) No matching distribution found for win32com (from pyttsx==1.2)` –  Mar 03 '17 at 00:55
  • @Crt I just installed the dependency (I'm fairly certain it was installed correctly), and I still get the same error message as above –  Mar 03 '17 at 00:56

1 Answers1

0

This worked on Python 3 on Ubuntu:

pip install git+https://github.com/RapidWareTech/pyttsx

But maybe it's not that easy on Windows to get the Engine running.

Harald Nordgren
  • 11,693
  • 6
  • 41
  • 65