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

How to install eyegrade via python pip




eyegrade - "Grade MCQ exams with a webcam", it belongs to Classifiers:

- Development Status :: 5 - Production/Stable
- Environment :: X11 Applications
- Environment :: X11 Applications :: Qt
- Intended Audience :: Education
- License :: OSI Approved
- License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
- Natural Language :: English
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Operating System :: POSIX :: Linux
- Programming Language :: Python
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3 :: Only
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.6
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Topic :: Education

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



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_eyegrade_env

- Active the virtual environment

test_eyegrade_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_eyegrade_env

- Active the virtual environment

source test_eyegrade_env/bin/active


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

To install eyegrade on Windows(CMD):

py -m pip install eyegrade

To install eyegrade on Unix/macOs:

pip install eyegrade


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

Example:

pip install eyegrade==0.7b1                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
eyegrade 0.92022-01-17T16:31:13Windows:

py -m pip install eyegrade==0.9

Unix/macOs:

pip install eyegrade==0.9

eyegrade 0.8.12019-03-29T14:55:05Windows:

py -m pip install eyegrade==0.8.1

Unix/macOs:

pip install eyegrade==0.8.1

eyegrade 0.82019-03-29T10:08:23Windows:

py -m pip install eyegrade==0.8

Unix/macOs:

pip install eyegrade==0.8

eyegrade 0.72017-07-26T21:52:09Windows:

py -m pip install eyegrade==0.7

Unix/macOs:

pip install eyegrade==0.7


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_eyegrade_downloaded_file>

On Unix/macOs:

pip install <path_to_eyegrade_downloaded_file>


List distribution:

- eyegrade-0.7b1.tar.gz
- eyegrade-0.7rc1.tar.gz
- eyegrade-0.7.tar.gz
- eyegrade-0.8rc1-py3-none-any.whl (python version >=3.5)
- eyegrade-0.8rc1.tar.gz (python version >=3.5)
- eyegrade-0.8rc2-py3-none-any.whl (python version >=3.5)
- eyegrade-0.8rc2.tar.gz (python version >=3.5)
- eyegrade-0.8-py3-none-any.whl (python version >=3.5)
- eyegrade-0.8.tar.gz (python version >=3.5)
- eyegrade-0.8.1-py3-none-any.whl (python version >=3.5)
- eyegrade-0.8.1.tar.gz (python version >=3.5)
- eyegrade-0.9rc1-py3-none-any.whl (python version >=3.6)
- eyegrade-0.9rc1.tar.gz (python version >=3.6)
- eyegrade-0.9-py3-none-any.whl (python version >=3.6)
- eyegrade-0.9.tar.gz (python version >=3.6)


Project link:

- Homepage