Jupyter notebook such as Hands-on Machine Learning with Scikit-Learn and TensorFlow ageron / handson-ml Let's run it on Cloud9.
--Get Cloud9 account --Cloud9 workspace startup
Is completed
$ pip install --upgrade pip
$ pip install --user --upgrade virtualenv
$ export PATH=~/.local/bin/:$PATH
$ which virtualenv
/home/ubuntu//.local/bin/virtualenv
$ export PJ=~/workspace/hanson-ml
$ mkdir -p $PJ && cd $PJ
$ virtualenv env
(env)$ source env/bin/activate
(env)$ pip install --upgrade jupyter
(env)$ python -c "import jupyter"
(env)$ jupyter --version
4.3.0
(env)$ jupyter notebook --port $PORT --ip $IP --no-browser
... The Jupyter Notebook is running at:
http://0.0.0.0:8080/?token=TOKEN ...
Click the URL to open it and it's OK!
Recommended Posts