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

How to install nifpga via python pip




nifpga - Python API for interacting with National Instrument's LabVIEW FPGA Devices, it belongs to Classifiers:

- Intended Audience :: End Users/Desktop
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Topic :: Scientific/Engineering
- Topic :: Scientific/Engineering :: Human Machine Interfaces
- Topic :: Software Development :: Embedded Systems
- Topic :: System
- Topic :: System :: Hardware
- Topic :: System :: Hardware :: Hardware Drivers

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



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_nifpga_env

- Active the virtual environment

test_nifpga_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_nifpga_env

- Active the virtual environment

source test_nifpga_env/bin/active


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

To install nifpga on Windows(CMD):

py -m pip install nifpga

To install nifpga on Unix/macOs:

pip install nifpga


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

Example:

pip install nifpga==17.0.0


Please see the version list below table:

VersionReleased dateCommand
nifpga 20.0.02020-05-18T19:24:46Windows:

py -m pip install nifpga==20.0.0

Unix/macOs:

pip install nifpga==20.0.0

nifpga 19.0.02019-03-20T22:21:29Windows:

py -m pip install nifpga==19.0.0

Unix/macOs:

pip install nifpga==19.0.0

nifpga 18.1.22018-09-26T19:28:16Windows:

py -m pip install nifpga==18.1.2

Unix/macOs:

pip install nifpga==18.1.2

nifpga 18.1.12018-06-27T17:40:41Windows:

py -m pip install nifpga==18.1.1

Unix/macOs:

pip install nifpga==18.1.1

nifpga 18.1.02018-06-26T15:24:51Windows:

py -m pip install nifpga==18.1.0

Unix/macOs:

pip install nifpga==18.1.0

nifpga 18.0.02018-04-03T14:38:11Windows:

py -m pip install nifpga==18.0.0

Unix/macOs:

pip install nifpga==18.0.0

nifpga 17.0.0.post22017-04-21T23:44:14Windows:

py -m pip install nifpga==17.0.0.post2

Unix/macOs:

pip install nifpga==17.0.0.post2

nifpga 17.0.0.post12017-03-15T15:37:39Windows:

py -m pip install nifpga==17.0.0.post1

Unix/macOs:

pip install nifpga==17.0.0.post1

nifpga 17.0.02017-03-06T22:37:12Windows:

py -m pip install nifpga==17.0.0

Unix/macOs:

pip install nifpga==17.0.0


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

Download the distribution file from nifpga-20.0.0-py2.py3-none-any.whl or the specific nifpga version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_nifpga_downloaded_file>

On Unix/macOs:

pip install <path_to_nifpga_downloaded_file>


List distribution:

- nifpga-17.0.0-py2.py3-none-any.whl
- nifpga-17.0.0.post1-py2.py3-none-any.whl
- nifpga-17.0.0.post2-py2.py3-none-any.whl
- nifpga-18.0.0-py2.py3-none-any.whl
- nifpga-18.1.0-py2.py3-none-any.whl
- nifpga-18.1.1-py2.py3-none-any.whl
- nifpga-18.1.2-py2.py3-none-any.whl
- nifpga-19.0.0-py2.py3-none-any.whl
- nifpga-20.0.0-py2.py3-none-any.whl
- nifpga-22.0.0-py3-none-any.whl (python version >3.4)


Project link:

- Homepage