0

I tried to install engine by using the command pip install engine on Command Prompt windows 10 Os.

C:\Users\Jayalakshmi.S1>pip install engine

But it raises an error

Collecting engine

Could not find a version that satisfies the requirement engine (from versions:)
No matching distribution found for engine

I am Using pip 10.0.1 and Python 3.6.5. What could be wrong?

VC.One
  • 14,790
  • 4
  • 25
  • 57
Jayalakshmi
  • 53
  • 3
  • 8
  • We need a bit more than one line of the error report. Please edit your answer to include *all* of it. – BoarGules May 14 '18 at 08:35
  • you are on pip `10.0.1` so doesnt seem to be related to [TLS version issue discussed here](https://stackoverflow.com/q/49768770/1526703). Pasting the full error would help. – Anupam May 14 '18 at 10:35

2 Answers2

-1

I would try:

conda install engine

I am assuming you have anaconda distribution of python. If not, I would highly recommend installing it.

quest
  • 3,576
  • 2
  • 16
  • 26
-2

It seems you have to install pyttsx3 for python 3+ versions because engine needs pyttsx as it supports python 2 versions so use pip install pyttsx3 and import pyttsx3 it worked for me