Not just on macOS, but works on any environment with Python installed - I’ll introduce a method for easily starting a web server.
As of 2020, I believe many engineers doing software development on MacBooks.
So I’ll introduce an example of using Python to start a web server in the default macOS environment.
$ python3 --version
Python 3.7.3
python3 -m http.server 8000
python2 --version
Python 2.7.16
python2 -m SimpleHTTPServer 8000
That’s all from the Gemba, where I wanted to easily start a web server with Python.