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

How to install patool via python pip




patool - portable archive file manager, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License (GPL)
- Programming Language :: Python :: 3.3
- Topic :: System
- Topic :: System :: Archiving

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



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_patool_env

- Active the virtual environment

test_patool_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_patool_env

- Active the virtual environment

source test_patool_env/bin/active


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

To install patool on Windows(CMD):

py -m pip install patool

To install patool on Unix/macOs:

pip install patool


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

Example:

pip install patool==0.5


Please see the version list below table:

VersionReleased dateCommand
patool 1.122016-01-17T08:15:09Windows:

py -m pip install patool==1.12

Unix/macOs:

pip install patool==1.12

patool 1.112016-01-09T20:15:21Windows:

py -m pip install patool==1.11

Unix/macOs:

pip install patool==1.11

patool 1.102015-12-10T19:18:16Windows:

py -m pip install patool==1.10

Unix/macOs:

pip install patool==1.10

patool 1.92015-12-07T11:29:57Windows:

py -m pip install patool==1.9

Unix/macOs:

pip install patool==1.9

patool 1.82015-07-19T17:32:47Windows:

py -m pip install patool==1.8

Unix/macOs:

pip install patool==1.8

patool 1.72014-06-27T19:36:33Windows:

py -m pip install patool==1.7

Unix/macOs:

pip install patool==1.7

patool 1.62014-06-08T10:08:50Windows:

py -m pip install patool==1.6

Unix/macOs:

pip install patool==1.6

patool 1.52014-03-30T08:03:16Windows:

py -m pip install patool==1.5

Unix/macOs:

pip install patool==1.5

patool 1.42013-09-02T20:39:09Windows:

py -m pip install patool==1.4

Unix/macOs:

pip install patool==1.4

patool 1.32013-07-19T13:23:04Windows:

py -m pip install patool==1.3

Unix/macOs:

pip install patool==1.3

patool 1.22013-04-14T21:04:35Windows:

py -m pip install patool==1.2

Unix/macOs:

pip install patool==1.2

patool 1.12013-04-07T15:56:43Windows:

py -m pip install patool==1.1

Unix/macOs:

pip install patool==1.1

patool 1.02013-03-01T06:37:30Windows:

py -m pip install patool==1.0

Unix/macOs:

pip install patool==1.0

patool 0.192013-02-21T18:35:26Windows:

py -m pip install patool==0.19

Unix/macOs:

pip install patool==0.19

patool 0.182012-12-17T20:00:22Windows:

py -m pip install patool==0.18

Unix/macOs:

pip install patool==0.18

patool 0.172012-08-04T12:20:49Windows:

py -m pip install patool==0.17

Unix/macOs:

pip install patool==0.17

patool 0.162012-05-12T11:59:59Windows:

py -m pip install patool==0.16

Unix/macOs:

pip install patool==0.16

patool 0.152012-04-09T06:09:42Windows:

py -m pip install patool==0.15

Unix/macOs:

pip install patool==0.15

patool 0.142012-01-30T20:03:45Windows:

py -m pip install patool==0.14

Unix/macOs:

pip install patool==0.14

patool 0.132011-01-25T20:38:34Windows:

py -m pip install patool==0.13

Unix/macOs:

pip install patool==0.13

patool 0.122010-11-20T15:34:50Windows:

py -m pip install patool==0.12

Unix/macOs:

pip install patool==0.12

patool 0.112010-10-04T17:41:59Windows:

py -m pip install patool==0.11

Unix/macOs:

pip install patool==0.11

patool 0.102010-04-10T20:32:43Windows:

py -m pip install patool==0.10

Unix/macOs:

pip install patool==0.10

patool 0.92010-03-26T20:08:58Windows:

py -m pip install patool==0.9

Unix/macOs:

pip install patool==0.9

patool 0.82010-03-11T17:56:14Windows:

py -m pip install patool==0.8

Unix/macOs:

pip install patool==0.8

patool 0.72010-03-08T21:09:31Windows:

py -m pip install patool==0.7

Unix/macOs:

pip install patool==0.7

patool 0.62010-03-06T19:28:03Windows:

py -m pip install patool==0.6

Unix/macOs:

pip install patool==0.6

patool 0.52010-03-04T16:17:49Windows:

py -m pip install patool==0.5

Unix/macOs:

pip install patool==0.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_patool_downloaded_file>

On Unix/macOs:

pip install <path_to_patool_downloaded_file>


List distribution:


Project link:

- Homepage