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

How to install par via python pip




par - A simple structured text parser project, it belongs to Classifiers:

- Development Status :: 2 - Pre-Alpha
- Intended Audience :: Developers
- License :: OSI Approved
- License :: OSI Approved :: BSD License
- Operating System :: OS Independent
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.6
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.3
- Programming Language :: Python :: 3.4

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



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_par_env

- Active the virtual environment

test_par_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_par_env

- Active the virtual environment

source test_par_env/bin/active


Step 2: OK, now, let flow below content to start the installation par

To install par on Windows(CMD):

py -m pip install par

To install par on Unix/macOs:

pip install par


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

Example:

pip install par==0.1


Please see the version list below table:

VersionReleased dateCommand
par 1.3.42016-08-28T11:56:08Windows:

py -m pip install par==1.3.4

Unix/macOs:

pip install par==1.3.4

par 1.3.32015-07-15T23:38:44Windows:

py -m pip install par==1.3.3

Unix/macOs:

pip install par==1.3.3

par 1.3.22015-01-24T02:44:06Windows:

py -m pip install par==1.3.2

Unix/macOs:

pip install par==1.3.2

par 1.3.12014-11-22T06:32:01Windows:

py -m pip install par==1.3.1

Unix/macOs:

pip install par==1.3.1

par 1.32014-07-01T14:59:28Windows:

py -m pip install par==1.3

Unix/macOs:

pip install par==1.3

par 1.22014-05-28T14:26:05Windows:

py -m pip install par==1.2

Unix/macOs:

pip install par==1.2

par 1.12014-05-21T03:09:26Windows:

py -m pip install par==1.1

Unix/macOs:

pip install par==1.1

par 1.02014-05-20T02:33:57Windows:

py -m pip install par==1.0

Unix/macOs:

pip install par==1.0

par 0.9.102014-05-12T05:35:22Windows:

py -m pip install par==0.9.10

Unix/macOs:

pip install par==0.9.10

par 0.9.92014-03-27T14:25:37Windows:

py -m pip install par==0.9.9

Unix/macOs:

pip install par==0.9.9

par 0.9.82014-03-14T04:23:16Windows:

py -m pip install par==0.9.8

Unix/macOs:

pip install par==0.9.8

par 0.9.72014-01-12T12:21:17Windows:

py -m pip install par==0.9.7

Unix/macOs:

pip install par==0.9.7

par 0.9.62014-01-06T12:02:31Windows:

py -m pip install par==0.9.6

Unix/macOs:

pip install par==0.9.6

par 0.9.52013-12-21T11:33:17Windows:

py -m pip install par==0.9.5

Unix/macOs:

pip install par==0.9.5

par 0.9.42013-11-30T02:01:49Windows:

py -m pip install par==0.9.4

Unix/macOs:

pip install par==0.9.4

par 0.9.32013-10-30T09:09:30Windows:

py -m pip install par==0.9.3

Unix/macOs:

pip install par==0.9.3

par 0.9.22013-10-23T02:41:30Windows:

py -m pip install par==0.9.2

Unix/macOs:

pip install par==0.9.2

par 0.9.12013-10-19T13:52:31Windows:

py -m pip install par==0.9.1

Unix/macOs:

pip install par==0.9.1

par 0.92013-10-13T14:56:01Windows:

py -m pip install par==0.9

Unix/macOs:

pip install par==0.9

par 0.82013-09-13T07:14:31Windows:

py -m pip install par==0.8

Unix/macOs:

pip install par==0.8

par 0.72013-08-15T05:29:27Windows:

py -m pip install par==0.7

Unix/macOs:

pip install par==0.7

par 0.62013-02-17T03:07:48Windows:

py -m pip install par==0.6

Unix/macOs:

pip install par==0.6

par 0.52012-11-25T13:20:38Windows:

py -m pip install par==0.5

Unix/macOs:

pip install par==0.5

par 0.42012-10-29T12:14:23Windows:

py -m pip install par==0.4

Unix/macOs:

pip install par==0.4

par 0.32012-10-19T11:10:24Windows:

py -m pip install par==0.3

Unix/macOs:

pip install par==0.3

par 0.22012-09-06T14:06:10Windows:

py -m pip install par==0.2

Unix/macOs:

pip install par==0.2

par 0.12012-07-17T08:56:47Windows:

py -m pip install par==0.1

Unix/macOs:

pip install par==0.1


Step 4: Otherwise, you can install par from local archives:

Download the distribution file from par-1.3.4.tar.gz or the specific par version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_par_downloaded_file>

On Unix/macOs:

pip install <path_to_par_downloaded_file>


List distribution:

- par-0.9.5.tar.gz
- par-0.9.6.tar.gz
- par-0.9.7.tar.gz
- par-0.9.8.tar.gz
- par-0.9.9.tar.gz
- par-0.9.10.tar.gz
- par-1.0.tar.gz
- par-1.1.tar.gz
- par-1.2.tar.gz
- par-1.3.tar.gz
- par-1.3.1.tar.gz
- par-1.3.2.tar.gz
- par-1.3.3.tar.gz
- par-1.3.4.tar.gz


Project link:

- Homepage