Revision 76ab4700e5a7a02cd7768c6d5ca04089d9f185e5 (click the page title to view the current version)
Changes from 76ab4700e5a7a02cd7768c6d5ca04089d9f185e5 to ed27e5c0d2052e9d00e64e83e150780b7c995ad8
# Using SageMath
If you have [SageMath](http://www.sagemath.org/) version 6.10, you just need to run
```
sage -i pari_jupyter
```
# Manual installation
We assume that you have Python 2.7, other versions may or may not work.
1. Install [Jupyter](http://jupyter.org/) (this is really a meta-package, containing many individual packages).
- Either install it using your distribution,
- or install it using `pip install jupyter`.
- or install it using `pip install --user jupyter`.
2. Install [Cython](http://cython.org/) from [git master](https://github.com/cython/cython):
- `git clone https://github.com/cython/cython.git`
- `cd cython`
- `./setup.py install`
- `./setup.py install --user`
3. Install [PARI/GP](http://pari.math.u-bordeaux.fr/) from git master:
- `git clone http://pari.math.u-bordeaux.fr/git/pari.git`
- `cd pari`
- `./Configure`
- `./Configure --prefix=$HOME/.local`
- `make install`
4. Install [pari_jupyter](https://github.com/jdemeyer/pari_jupyter) from git master:
- `git clone https://github.com/jdemeyer/pari_jupyter.git`
- `cd pari_jupyter`
- `./setup.py install`
- `CFLAGS="-I$HOME/.local/include -L$HOME/.local/lib" ./setup.py install --user`
5. Set
PATH=$HOME/.local:$PATH
LD_LIBRARY_PATH=$HOME/.local/lib:
6. jupyter-notebook