I am using PyCharm editor for python coding and want to install pyttsx3
library and also download from cmd not the problem is pycharm is not identifying the module as installed. Can you suggest what to do I am on Windows 10
Asked
Active
Viewed 493 times
-1

Yash
- 11
- 2
-
1If you are using PyCharm, install the module in PyCharm (setting -> Project -> project environment). It is very probably you are installing the module in a different environment – Giacomo Catenazzi Sep 01 '22 at 10:25
1 Answers
0
I see in your PyCharm instance that you have a specific interpreter called "jarvis". You need to make sure that the pip install
command you are executing in the command prompt is installing this package in the site-packages folder of the jarvis interpreter.
You can install it in the same environment as Giacomo suggested using PyCharm to be sure. Click the "Terminal" tab and run the pip install
command there.

CodeCaffeinateContinue
- 204
- 1
- 3
-
I downloaded pip and it also shows successfully installed but showing error as no module found, 'jarvis' is the project name – Yash Sep 01 '22 at 23:49