Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install pari-jupyter via python pip




pari-jupyter - A Jupyter kernel for PARI/GP, it belongs to Classifiers:

- Intended Audience :: Science/Research
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Operating System :: POSIX
- Programming Language :: C
- Programming Language :: Cython
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Mathematics

When you know about this project and you want to new install pari-jupyter to support your project or you get trouble as ModuleNotFoundError: No module named "pari-jupyter" or ImportError: cannot import name "pari-jupyter" in your project, let follow this tutorial to install pari-jupyter



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_pari-jupyter_env

- Active the virtual environment

test_pari-jupyter_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_pari-jupyter_env

- Active the virtual environment

source test_pari-jupyter_env/bin/active


Step 2: OK, now, let flow below content to start the installation pari-jupyter

To install pari-jupyter on Windows(CMD):

py -m pip install pari-jupyter

To install pari-jupyter on Unix/macOs:

pip install pari-jupyter


Step 3: If you want to install a specific pari-jupyter version, add ==<pari-jupyter version> to the end command line

Example:

pip install pari-jupyter==1.1.2


Please see the version list below table:

VersionReleased dateCommand
pari-jupyter 1.4.12022-01-25T09:24:35Windows:

py -m pip install pari-jupyter==1.4.1

Unix/macOs:

pip install pari-jupyter==1.4.1

pari-jupyter 1.4.02021-12-09T14:57:08Windows:

py -m pip install pari-jupyter==1.4.0

Unix/macOs:

pip install pari-jupyter==1.4.0

pari-jupyter 1.3.22018-01-23T15:43:14Windows:

py -m pip install pari-jupyter==1.3.2

Unix/macOs:

pip install pari-jupyter==1.3.2

pari-jupyter 1.3.12018-01-17T10:32:15Windows:

py -m pip install pari-jupyter==1.3.1

Unix/macOs:

pip install pari-jupyter==1.3.1

pari-jupyter 1.3.02018-01-11T10:56:03Windows:

py -m pip install pari-jupyter==1.3.0

Unix/macOs:

pip install pari-jupyter==1.3.0

pari-jupyter 1.2.22017-02-13T14:28:17Windows:

py -m pip install pari-jupyter==1.2.2

Unix/macOs:

pip install pari-jupyter==1.2.2

pari-jupyter 1.2.12017-01-12T16:42:04Windows:

py -m pip install pari-jupyter==1.2.1

Unix/macOs:

pip install pari-jupyter==1.2.1

pari-jupyter 1.2.02017-01-12T15:50:54Windows:

py -m pip install pari-jupyter==1.2.0

Unix/macOs:

pip install pari-jupyter==1.2.0

pari-jupyter 1.1.22016-02-23T13:45:08Windows:

py -m pip install pari-jupyter==1.1.2

Unix/macOs:

pip install pari-jupyter==1.1.2


Step 4: Otherwise, you can install pari-jupyter from local archives:

Download the distribution file from pari-jupyter-1.4.1.tar.gz or the specific pari-jupyter version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pari-jupyter_downloaded_file>

On Unix/macOs:

pip install <path_to_pari-jupyter_downloaded_file>


List distribution:


Project link:

- Homepage