Pip command line “ImportError: No Module Named Typing”

1

Running the Command gives me the following error:

C:\Python34\Scripts> pip install pygame

Error Stack :

Traceback (most recent call last):
  File "C:\Python34\lib\runpy.py", line 171, in _run_module_as_main
    "__main__", mod_spec)
  File "C:\Python34\lib\runpy.py", line 86, in _run_code
    exec(code, run_globals)
  File "C:\Python34\Scripts\pip.exe\__main__.py", line 5, in <module>
  File "C:\Python34\lib\site-packages\pip\__init__.py", line 1, in <module>
    from typing import List, Optional
ImportError: No module named 'typing'
Share
Improve this question
1
  • 3
    Python 3.4 was released over 7 years ago and has already reached end-of-life. Current versions of pip might not support Python 3.4 anymore. – Matthias Apr 27 at 6:41

Comments

Popular posts from this blog

Meaning of `{}` for return expression

Get current scroll position of ScrollView in React Native

flutter websocket connection issue