Home > Net >  Why is my python module not importing ON linux
Why is my python module not importing ON linux

Time:09-20

As you can see I have imported the modules correctly using pip install. I googled a bit why the module was not imported and I realized I have to add it to PATH. I did that too but now there is a new error something about a syntax error

File "pygame/__init__.py",
self.reason = f"{exc_type.__name__}: {self.info}"

Is this because my chrome book can not run Pygame or is the problem something else?

Picture of my terminal with the error:

enter image description here

CodePudding user response:

you need to run python3. to start python 3. Just running python starts python 2.7.

CodePudding user response:

you have your installed packages in python 3.9 version while your python environment is 2.7, look for python3 executable and try with that version

  • Related