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

How to install pyqtgraph via python pip




pyqtgraph - Scientific Graphics and GUI Library for Python, it belongs to Classifiers:

- Environment :: Other Environment
- Intended Audience :: Science/Research
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Visualization
- Topic :: Software Development :: User Interfaces

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



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_pyqtgraph_env

- Active the virtual environment

test_pyqtgraph_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_pyqtgraph_env

- Active the virtual environment

source test_pyqtgraph_env/bin/active


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

To install pyqtgraph on Windows(CMD):

py -m pip install pyqtgraph

To install pyqtgraph on Unix/macOs:

pip install pyqtgraph


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

Example:

pip install pyqtgraph==0.9.1


Please see the version list below table:

VersionReleased dateCommand
pyqtgraph 0.12.42022-03-04T18:37:22Windows:

py -m pip install pyqtgraph==0.12.4

Unix/macOs:

pip install pyqtgraph==0.12.4

pyqtgraph 0.12.32021-10-11T03:35:04Windows:

py -m pip install pyqtgraph==0.12.3

Unix/macOs:

pip install pyqtgraph==0.12.3

pyqtgraph 0.12.22021-07-08T08:19:30Windows:

py -m pip install pyqtgraph==0.12.2

Unix/macOs:

pip install pyqtgraph==0.12.2

pyqtgraph 0.12.12021-04-07T02:34:28Windows:

py -m pip install pyqtgraph==0.12.1

Unix/macOs:

pip install pyqtgraph==0.12.1

pyqtgraph 0.12.02021-03-25T19:20:48Windows:

py -m pip install pyqtgraph==0.12.0

Unix/macOs:

pip install pyqtgraph==0.12.0

pyqtgraph 0.11.12020-12-20T02:43:22Windows:

py -m pip install pyqtgraph==0.11.1

Unix/macOs:

pip install pyqtgraph==0.11.1

pyqtgraph 0.11.02020-06-08T23:50:26Windows:

py -m pip install pyqtgraph==0.11.0

Unix/macOs:

pip install pyqtgraph==0.11.0

pyqtgraph 0.10.02016-11-05T07:01:46Windows:

py -m pip install pyqtgraph==0.10.0

Unix/macOs:

pip install pyqtgraph==0.10.0

pyqtgraph 0.9.102014-12-24T20:18:22Windows:

py -m pip install pyqtgraph==0.9.10

Unix/macOs:

pip install pyqtgraph==0.9.10

pyqtgraph 0.9.82013-11-24T17:35:13Windows:

py -m pip install pyqtgraph==0.9.8

Unix/macOs:

pip install pyqtgraph==0.9.8

pyqtgraph 0.9.72013-02-25T19:06:20Windows:

py -m pip install pyqtgraph==0.9.7

Unix/macOs:

pip install pyqtgraph==0.9.7

pyqtgraph 0.9.62013-02-14T14:31:32Windows:

py -m pip install pyqtgraph==0.9.6

Unix/macOs:

pip install pyqtgraph==0.9.6

pyqtgraph 0.9.52013-01-12T23:43:25Windows:

py -m pip install pyqtgraph==0.9.5

Unix/macOs:

pip install pyqtgraph==0.9.5

pyqtgraph 0.9.42013-01-08T17:31:46Windows:

py -m pip install pyqtgraph==0.9.4

Unix/macOs:

pip install pyqtgraph==0.9.4

pyqtgraph 0.9.32012-12-30T02:45:45Windows:

py -m pip install pyqtgraph==0.9.3

Unix/macOs:

pip install pyqtgraph==0.9.3

pyqtgraph 0.9.12012-12-27T16:11:00Windows:

py -m pip install pyqtgraph==0.9.1

Unix/macOs:

pip install pyqtgraph==0.9.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pyqtgraph_downloaded_file>

On Unix/macOs:

pip install <path_to_pyqtgraph_downloaded_file>


List distribution:


Project link:

- Homepage