The current command to start the "tiny Web Server" is possibly outdated. You may want to update it to something like: **Python 2** ``` python -m SimpleHTTPServer 8000 ``` **Python 3** ``` python -m http.server 8000 ``` Newbs on a MAC, like me can get discouraged with something this simple...