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

How to install PyVISA-py via python pip




PyVISA-py - Pure Python implementation of a VISA library., it belongs to Classifiers:

- Intended Audience :: Science/Research
- Operating System :: MacOS
- Operating System :: MacOS :: MacOS X
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.10
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator
- Topic :: Software Development :: Libraries
- Topic :: Software Development :: Libraries :: Python Modules

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



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_PyVISA-py_env

- Active the virtual environment

test_PyVISA-py_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_PyVISA-py_env

- Active the virtual environment

source test_PyVISA-py_env/bin/active


Step 2: OK, now, let flow below content to start the installation PyVISA-py

To install PyVISA-py on Windows(CMD):

py -m pip install PyVISA-py

To install PyVISA-py on Unix/macOs:

pip install PyVISA-py


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

Example:

pip install PyVISA-py==0.1


Please see the version list below table:

VersionReleased dateCommand
PyVISA-py 0.5.32022-05-12T09:32:44Windows:

py -m pip install PyVISA-py==0.5.3

Unix/macOs:

pip install PyVISA-py==0.5.3

PyVISA-py 0.5.22021-02-04T11:09:25Windows:

py -m pip install PyVISA-py==0.5.2

Unix/macOs:

pip install PyVISA-py==0.5.2

PyVISA-py 0.5.1 yanked2020-10-01T00:19:52Windows:

py -m pip install PyVISA-py==0.5.1                                                                          yanked

Unix/macOs:

pip install PyVISA-py==0.5.1                                                                          yanked

PyVISA-py 0.5.0 yanked2020-09-17T00:15:05Windows:

py -m pip install PyVISA-py==0.5.0                                                                          yanked

Unix/macOs:

pip install PyVISA-py==0.5.0                                                                          yanked

PyVISA-py 0.4.12020-05-27T22:08:36Windows:

py -m pip install PyVISA-py==0.4.1

Unix/macOs:

pip install PyVISA-py==0.4.1

PyVISA-py 0.4.02020-05-07T19:37:51Windows:

py -m pip install PyVISA-py==0.4.0

Unix/macOs:

pip install PyVISA-py==0.4.0

PyVISA-py 0.3.12018-09-13T00:15:43Windows:

py -m pip install PyVISA-py==0.3.1

Unix/macOs:

pip install PyVISA-py==0.3.1

PyVISA-py 0.3.02018-09-06T02:15:07Windows:

py -m pip install PyVISA-py==0.3.0

Unix/macOs:

pip install PyVISA-py==0.3.0

PyVISA-py 0.22015-08-25T03:39:37Windows:

py -m pip install PyVISA-py==0.2

Unix/macOs:

pip install PyVISA-py==0.2

PyVISA-py 0.12015-02-08T05:16:27Windows:

py -m pip install PyVISA-py==0.1

Unix/macOs:

pip install PyVISA-py==0.1


Step 4: Otherwise, you can install PyVISA-py from local archives:

Download the distribution file from PyVISA-py-0.5.3.tar.gz or the specific PyVISA-py version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_PyVISA-py_downloaded_file>

On Unix/macOs:

pip install <path_to_PyVISA-py_downloaded_file>


List distribution:


Project link:

- changelog
- documentation
- homepage
- repository