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

How to install pupillib via python pip




pupillib - A software package to perform trial extraction on Pupil Labs eye tracker data collected into XDF files through LabRecorder., it belongs to Classifiers:

- Topic :: Scientific/Engineering :: Information Analysis
- Topic :: Scientific/Engineering :: Medical Science Apps.
- Topic :: Scientific/Engineering :: Visualization

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



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_pupillib_env

- Active the virtual environment

test_pupillib_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_pupillib_env

- Active the virtual environment

source test_pupillib_env/bin/active


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

To install pupillib on Windows(CMD):

py -m pip install pupillib

To install pupillib on Unix/macOs:

pip install pupillib


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

Example:

pip install pupillib==1.0.6


Please see the version list below table:

VersionReleased dateCommand
pupillib 1.2.12019-11-08T04:06:29Windows:

py -m pip install pupillib==1.2.1

Unix/macOs:

pip install pupillib==1.2.1

pupillib 1.2.02019-10-06T17:18:29Windows:

py -m pip install pupillib==1.2.0

Unix/macOs:

pip install pupillib==1.2.0

pupillib 1.1.02019-08-18T16:57:20Windows:

py -m pip install pupillib==1.1.0

Unix/macOs:

pip install pupillib==1.1.0

pupillib 1.0.62019-06-30T19:19:24Windows:

py -m pip install pupillib==1.0.6

Unix/macOs:

pip install pupillib==1.0.6


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_pupillib_downloaded_file>

On Unix/macOs:

pip install <path_to_pupillib_downloaded_file>


List distribution:


Project link:

- Homepage