mirror of
https://github.com/gotbletu/shownotes
synced 2024-11-05 00:00:51 +00:00
18 lines
353 B
Plaintext
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"
|