Make step-by-step installation less error prone

The pip install is now made before we clone (so we always install from PyPi) and the Git clone is made via HTTPS not SSH in case you do not have your SSH key on your GH account
This commit is contained in:
Brendan Rius 2016-06-08 10:34:02 +01:00
parent 0915173c22
commit 2937ba0f6f

@ -15,8 +15,8 @@
* pip
### Step-by-step:
* `git clone git@github.com:brendan-rius/jupyter-c-kernel.git`
* `pip install jupyter-c-kernel`
* `git clone https://github.com/brendan-rius/jupyter-c-kernel.git`
* `cd jupyter-c-kernel`
* `jupyter-kernelspec install c_spec/`
* `jupyter-notebook`. Enjoy!