[issue27051] Create PIP gui

Upendra Kumar report at bugs.python.org
Tue May 24 09:21:49 EDT 2016


Upendra Kumar added the comment:

These are some of the code parts which may be necessary :

1. Code for identification of OS

from sys import platform

if platform.startswith("linux"):
    #linux
elif platform == "darwin":
    #mac os x
else platform == "win32":
    # Windows

----------

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue27051>
_______________________________________


More information about the Python-bugs-list mailing list