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

How to install epyt via python pip




epyt - A Python module for EPANET water distribution simulation libraries. The EPyT is inspired by the EPANET-Matlab Toolkit., it belongs to Classifiers:

- License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)

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



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_epyt_env

- Active the virtual environment

test_epyt_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_epyt_env

- Active the virtual environment

source test_epyt_env/bin/active


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

To install epyt on Windows(CMD):

py -m pip install epyt

To install epyt on Unix/macOs:

pip install epyt


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

Example:

pip install epyt==0.0.1.0                                                                          yanked


Please see the version list below table:

VersionReleased dateCommand
epyt 0.0.32022-08-09T20:18:19Windows:

py -m pip install epyt==0.0.3

Unix/macOs:

pip install epyt==0.0.3

epyt 0.0.2.0 yanked2022-06-25T11:30:00Windows:

py -m pip install epyt==0.0.2.0                                                                          yanked

Unix/macOs:

pip install epyt==0.0.2.0                                                                          yanked

epyt 0.0.1.6 yanked2022-06-25T11:27:13Windows:

py -m pip install epyt==0.0.1.6                                                                          yanked

Unix/macOs:

pip install epyt==0.0.1.6                                                                          yanked

epyt 0.0.1.5 yanked2022-05-28T20:24:13Windows:

py -m pip install epyt==0.0.1.5                                                                          yanked

Unix/macOs:

pip install epyt==0.0.1.5                                                                          yanked

epyt 0.0.1.0 yanked2022-05-27T14:58:29Windows:

py -m pip install epyt==0.0.1.0                                                                          yanked

Unix/macOs:

pip install epyt==0.0.1.0                                                                          yanked


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_epyt_downloaded_file>

On Unix/macOs:

pip install <path_to_epyt_downloaded_file>


List distribution:

- epyt-0.0.1.0.tar.gz (python version >=3.7)
- epyt-0.0.1.5.tar.gz (python version >=3.7)
- epyt-0.0.1.6.tar.gz (python version >=3.7)
- epyt-0.0.2.0.tar.gz (python version >=3.7)
- epyt-0.0.3.tar.gz (python version >=3.7)
- epyt-1.0.0.tar.gz (python version >=3.7)
- epyt-1.0.1.tar.gz (python version >=3.7)
- epyt-1.0.2.tar.gz (python version >=3.7)


Project link:

- Homepage
- Bug Tracker