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

How to install e5 via python pip




e5 - Configurable data entry program for archaeology, it belongs to Classifiers:

- Programming Language :: Python :: 3 :: Only

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



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_e5_env

- Active the virtual environment

test_e5_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_e5_env

- Active the virtual environment

source test_e5_env/bin/active


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

To install e5 on Windows(CMD):

py -m pip install e5

To install e5 on Unix/macOs:

pip install e5


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

Example:

pip install e5==1.0.903


Please see the version list below table:

VersionReleased dateCommand
e5 1.3.72022-07-20T18:09:03Windows:

py -m pip install e5==1.3.7

Unix/macOs:

pip install e5==1.3.7

e5 1.3.52022-07-13T12:16:34Windows:

py -m pip install e5==1.3.5

Unix/macOs:

pip install e5==1.3.5

e5 1.3.42022-06-20T12:59:43Windows:

py -m pip install e5==1.3.4

Unix/macOs:

pip install e5==1.3.4

e5 1.3.32022-06-17T13:59:56Windows:

py -m pip install e5==1.3.3

Unix/macOs:

pip install e5==1.3.3

e5 1.3.22022-06-17T13:39:36Windows:

py -m pip install e5==1.3.2

Unix/macOs:

pip install e5==1.3.2

e5 1.3.12022-06-17T12:13:29Windows:

py -m pip install e5==1.3.1

Unix/macOs:

pip install e5==1.3.1

e5 1.0.9032019-11-13T08:11:12Windows:

py -m pip install e5==1.0.903

Unix/macOs:

pip install e5==1.0.903


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_e5_downloaded_file>

On Unix/macOs:

pip install <path_to_e5_downloaded_file>


List distribution:

- e5-1.0.903.tar.gz (python version >=3.6)
- e5-1.3.1-py3-none-any.whl (python version >=3.6)
- e5-1.3.1.tar.gz (python version >=3.6)
- e5-1.3.2-py3-none-any.whl (python version >=3.6)
- e5-1.3.2.tar.gz (python version >=3.6)
- e5-1.3.3-py3-none-any.whl (python version >=3.6)
- e5-1.3.3.tar.gz (python version >=3.6)
- e5-1.3.4-py3-none-any.whl (python version >=3.6)
- e5-1.3.4.tar.gz (python version >=3.6)
- e5-1.3.5-py3-none-any.whl (python version >=3.6)
- e5-1.3.5.tar.gz (python version >=3.6)
- e5-1.3.7-py3-none-any.whl (python version >=3.6)
- e5-1.3.7.tar.gz (python version >=3.6)
- e5-1.3.9-py3-none-any.whl (python version >=3.6)
- e5-1.3.9.tar.gz (python version >=3.6)


Project link:

- Homepage
- Bug Tracker