curl -L https://www.python.org/ftp/python/2.7.11/python-2.7.11.msi -o python.msi
wine msiexec -i python.msi -quiet -qn -norestart
wine c:/Python27/python.exe -m pip install pyinstaller
This should work but fails with:
Retrying (Retry(total=4, connect=None, read=None, redirect=None)) after connection broken by 'ProtocolError('Connection aborted.', error(0, 'Error'))': /simple/pip/
Network connection from within the container seems to work fine (curl works), but it seems that there is an issue with the network from wine). Being headless and having no wineconsole makes it harder to check.
This should work but fails with:
Network connection from within the container seems to work fine (
curlworks), but it seems that there is an issue with the network from wine). Being headless and having no wineconsole makes it harder to check.