I'm trying to get PyGame running in a docker (so I can eventually work with PyGame and TensorFlow in windows). But when I try run:
pip install pygame
I get back
root@03da78748024:~# pip install pygame
Collecting pygame
/usr/local/lib/python2.7/dist-packages/pip/_vendor/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
Could not find a version that satisfies the requirement pygame (from versions: )
No matching distribution found for pygame
Pip install does work with other packages, e.g. pybrain. Also is successfully installed on my windows machine. But I want to install it within docker so I can use it with TensorFlow.
Does anyone have any experience of getting pygame running in docker? Is it even possible?
Thanks in advance.