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

How to install percol via python pip




percol - Adds flavor of interactive filtering to the traditional pipe concept of shell, it belongs to Classifiers:

- Environment :: Console :: Curses
- Operating System :: POSIX
- Topic :: Text Editors
- Topic :: Text Editors :: Emacs
- Topic :: Text Processing
- Topic :: Text Processing :: Filters
- Topic :: Utilities

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



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_percol_env

- Active the virtual environment

test_percol_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_percol_env

- Active the virtual environment

source test_percol_env/bin/active


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

To install percol on Windows(CMD):

py -m pip install percol

To install percol on Unix/macOs:

pip install percol


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

Example:

pip install percol==0.0.6


Please see the version list below table:

VersionReleased dateCommand
percol 0.2.12015-07-30T09:18:09Windows:

py -m pip install percol==0.2.1

Unix/macOs:

pip install percol==0.2.1

percol 0.2.02015-07-30T09:01:04Windows:

py -m pip install percol==0.2.0

Unix/macOs:

pip install percol==0.2.0

percol 0.1.12015-07-26T14:56:53Windows:

py -m pip install percol==0.1.1

Unix/macOs:

pip install percol==0.1.1

percol 0.1.02015-03-18T06:02:18Windows:

py -m pip install percol==0.1.0

Unix/macOs:

pip install percol==0.1.0

percol 0.0.82015-01-19T14:06:24Windows:

py -m pip install percol==0.0.8

Unix/macOs:

pip install percol==0.0.8

percol 0.0.72014-05-31T07:30:13Windows:

py -m pip install percol==0.0.7

Unix/macOs:

pip install percol==0.0.7

percol 0.0.62014-05-31T02:58:24Windows:

py -m pip install percol==0.0.6

Unix/macOs:

pip install percol==0.0.6


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_percol_downloaded_file>

On Unix/macOs:

pip install <path_to_percol_downloaded_file>


List distribution:


Project link:

- Homepage