Created
January 10, 2018 04:47
-
-
Save ko-lem/e499c26d8bf6f3dbc29731ef6fd4e139 to your computer and use it in GitHub Desktop.
Setup VPS for kaggle work
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/lemonkoala/utils.git | |
echo "source ~/utils/_all.bash" > ~/.bashrc | |
source ~/.bashrc | |
mkdir jupyter | |
docker pull kaggle/python | |
docker run \ | |
-it \ | |
-d \ | |
-p 8888:8888 \ | |
-v ~/jupyter:/tmp/working \ | |
--name kaggle \ | |
-w=/tmp/working \ | |
kaggle/python \ | |
jupyter notebook --NotebookApp.token='' --no-browser --ip "0.0.0.0" --allow-root --notebook-dir=/tmp/working | |
pip install kaggle-cli | |
apt-get install unzip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment