Remove easy install script as installation method changed

This commit is contained in:
Brendan Rius 2017-08-10 17:05:45 +02:00
parent 28604bc230
commit 9ec152dda1
2 changed files with 0 additions and 34 deletions

@ -19,10 +19,6 @@
* `install_c_kernel`
* `jupyter-notebook`. Enjoy!
### Easy installation for Unix user:
* `wget -O - https://raw.githubusercontent.com/brendan-rius/jupyter-c-kernel/master/install.sh | sh`
## Example of notebook
![Example of notebook](example-notebook.png?raw=true "Example of notebook")

@ -1,30 +0,0 @@
echo " ___ _ _____ _ __ _ "
echo " |_ | | | / __ \ | | / / | |"
echo " | |_ _ _ __ _ _| |_ ___ _ __ | / \/ | |/ / ___ _ __ _ __ ___| |"
echo " | | | | | '_ \| | | | __/ _ \ '__| | | | \ / _ \ '__| '_ \ / _ \ |"
echo "/\__/ / |_| | |_) | |_| | || __/ | | \__/\ | |\ \ __/ | | | | | __/ |"
echo "\____/ \__._| .__/ \__. |\__\___|_| \____/ \_| \_/\___|_| |_| |_|\___|_|"
echo " | | __/ | "
echo " |_| |___/ "
tag_name="$1"
repository="${2:-https://github.com/brendan-rius/jupyter-c-kernel.git}"
repo_name="jupyter-c-kernel"
set -x
echo ":: Installing python module C kernel."
pip install $repo_name; echo "Done. "
echo ":: Cloning Jupyter C-kernel... "
git clone $repository $repo_name; echo "Done. "
cd $repo_name
if [ ! -z "$tag_name" ]; then
echo ":: Using tag $tag_name"
git checkout "$tag_name"; echo "Done."
fi
echo ":: Installing kernel specification"
jupyter-kernelspec install c_spec/ ; echo "Done."
echo ":: Removing repository"
cd ..
rm -rf jupyter-c-kernel/
echo "Completed! Installation successful. You can type jupyter-notebook and be happy"