Jupyter Jupyter notebook啟動(指定port與不限存取IP) Read Time:9 Second 指定使用埠號80(HTTP),以及不限制可存取的來源IP jupyter notebook --port 80 --ip '0.0.0.0' --allow-root 同場加映 Flask啟動(指定port與不限存取IP) python api.py --host=0.0.0.0 --port 5000 --reload --with-threads