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

How to install procgraph via python pip




procgraph - ProcGraph ("processing graph") is a Python library for rapid prototyping of processing pipelines for logged and realtime data., it belongs to Classifiers:

- License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)

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



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_procgraph_env

- Active the virtual environment

test_procgraph_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_procgraph_env

- Active the virtual environment

source test_procgraph_env/bin/active


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

To install procgraph on Windows(CMD):

py -m pip install procgraph

To install procgraph on Unix/macOs:

pip install procgraph


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

Example:

pip install procgraph==1.5


Please see the version list below table:

VersionReleased dateCommand
procgraph 1.10.102018-01-06T11:58:44Windows:

py -m pip install procgraph==1.10.10

Unix/macOs:

pip install procgraph==1.10.10

procgraph 1.10.92018-01-01T11:46:52Windows:

py -m pip install procgraph==1.10.9

Unix/macOs:

pip install procgraph==1.10.9

procgraph 1.10.82018-01-01T11:45:13Windows:

py -m pip install procgraph==1.10.8

Unix/macOs:

pip install procgraph==1.10.8

procgraph 1.10.72018-01-01T11:42:36Windows:

py -m pip install procgraph==1.10.7

Unix/macOs:

pip install procgraph==1.10.7

procgraph 1.10.62017-10-19T12:06:50Windows:

py -m pip install procgraph==1.10.6

Unix/macOs:

pip install procgraph==1.10.6

procgraph 1.10.52017-09-12T18:33:00Windows:

py -m pip install procgraph==1.10.5

Unix/macOs:

pip install procgraph==1.10.5

procgraph 1.10.12016-07-04T22:40:39Windows:

py -m pip install procgraph==1.10.1

Unix/macOs:

pip install procgraph==1.10.1

procgraph 1.102016-03-20T16:33:49Windows:

py -m pip install procgraph==1.10

Unix/macOs:

pip install procgraph==1.10

procgraph 1.92016-03-20T03:09:51Windows:

py -m pip install procgraph==1.9

Unix/macOs:

pip install procgraph==1.9

procgraph 1.72016-03-20T03:09:22Windows:

py -m pip install procgraph==1.7

Unix/macOs:

pip install procgraph==1.7

procgraph 1.52013-04-25T16:23:16Windows:

py -m pip install procgraph==1.5

Unix/macOs:

pip install procgraph==1.5


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_procgraph_downloaded_file>

On Unix/macOs:

pip install <path_to_procgraph_downloaded_file>


List distribution:


Project link:

- Homepage
- Download