shownotes-w3m-rice/python_webserver.txt
gotbletu 8821221573 i3
2013-08-24 14:56:25 -07:00

18 lines
353 B
Plaintext

Notes for video: http://www.youtube.com/watch?v=FFIjMYzkHhc
# python http server
# connect browser to: http://ip:port
# ex: http://192.168.1.102:8000
# how to figure out your ip address
# ifconfig
# or
# ip addr
# how figure out the python version
# python -V
alias myserver="python3 -m http.server"
alias myserver2="python2 -m SimpleHTTPServer"