Go to File -> Settings -> Tools -> Terminal and change Shell path based on the the installed git version.
for 64bit:
"C:\Program Files\Git\bin\sh.exe" --login -ifor 32bit:
"C:\Program Files (x86)\Git\bin\sh.exe" --login -i| #! /usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| """vlc media player; based off example in vlc repo: | |
| `http://git.videolan.org/?p=vlc/bindings/python.git;a=commit;h=HEAD` | |
| See also: | |
| `http://infohost.nmt.edu/tcc/help/pubs/tkinter/web/menu.html` | |
| `http://infohost.nmt.edu/tcc/help/pubs/tkinter/web/menu-coptions.html` |
Go to File -> Settings -> Tools -> Terminal and change Shell path based on the the installed git version.
for 64bit:
"C:\Program Files\Git\bin\sh.exe" --login -ifor 32bit:
"C:\Program Files (x86)\Git\bin\sh.exe" --login -i| import socket | |
| client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM) | |
| server_address = ('www.python.org', 80) | |
| client_socket.connect(server_address) | |
| request_header = 'GET / HTTP/1.0\r\nHost: www.python.org\r\n\r\n' | |
| client_socket.send(request_header) | |
| response = '' |