shownotes-w3m-rice/python_webserver.txt

18 lines
353 B
Plaintext
Raw Normal View History

2013-08-24 21:56:25 +00:00
Notes for video: http://www.youtube.com/watch?v=FFIjMYzkHhc
2013-07-16 16:13:07 +00:00
# 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"