I already have python 3.8 installed but need to also install python 3.6 which installed without error.I would like to run python 3.8 with the command python
anywhere in cmd and just run python 3.6 from the specific file C:Python\Python36\python.exe
so did not add python 3.6 to PATH. However when I try to run python 3.6 I receive this error:
Fatal Python error: Py_Initialize: can`t initialize sys standard streams
Traceback (most recent call last):
File "C:Python\Python38\lib\abc.py", line 64, in <module>
ModuleNotFoundError: No module named '_abc'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:Python\Python38\lib\io.py", line 52, in <module>
File "C:Python\Python38\lib\abc.py", line 68, in <module>
File "C:Python\Python38\lib\_py_abc.py", line 35
def __new__(mcls, name, bases, namespace, /, **kwargs):
^
SyntaxError: invalid syntax
I don't know why when I run Python36/python.exe, it attempts to access python 3.8 modules. I have tried uninstalling and installing. Any ideas?