You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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"