I am a newbie in python and I am trying to add a new environment for my project which runs fine on my current environment Python 3.7.5 After adding all the dependency I was facing an issue for pyttsx3 package(for python text to speech) on researching further I found out that this was a problem with python version Python 3.7.6 https://github.com/nateshmbhat/pyttsx3/issues/136
which was the python version for my current virtual environment. These are the steps that I have followed for install the environment
- py -m pip install --user virtualenv
- py -m venv env
- To activate : .\env\Scripts\activate
https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/
I want that I can either get Python 3.7.7 or Python 3.7.5(on my current machine) for my virtual environment.
I am using Visual studiocode IDE .