When I try to install pygame in pycharm (python 3.8), I get this error message:
Collecting pygame Using cached pygame-1.9.6.tar.gz (3.2 MB) Installing collected packages: pygame Running setup.py install for pygame: started Running setup.py install for pygame: finished with status 'error'
ERROR: Command errored out with exit status 1: command: /Users/igna/PycharmProjects/pygame/venv/bin/python -u -c 'import sys, setuptools, tokenize; sys.argv[0] =
proposed solution: Try to run this command from the system terminal. Make sure that you use the correct version of 'pip' installed for your Python interpreter located at '/Users/igna/PycharmProjects/pygame/venv/bin/python'.
When I pip install pygame, I get "Succesfully installed pygame-1.9.6" But when I pip3 install pygame, I get an error.
It says: "You are using pip version 19.2.3, however version 20.0.2 is available." So I updated pip
And I still can´t install pygame.
Any idea?
Thank you!