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

How to install hydroeval via python pip




hydroeval - HydroEval: An Evaluator for Streamflow Time Series In Python, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)
- Operating System :: MacOS
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX :: Linux
- Programming Language :: Python :: Implementation :: CPython
- Topic :: Scientific/Engineering :: Hydrology

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



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_hydroeval_env

- Active the virtual environment

test_hydroeval_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_hydroeval_env

- Active the virtual environment

source test_hydroeval_env/bin/active


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

To install hydroeval on Windows(CMD):

py -m pip install hydroeval

To install hydroeval on Unix/macOs:

pip install hydroeval


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

Example:

pip install hydroeval==0.0.1


Please see the version list below table:

VersionReleased dateCommand
hydroeval 0.1.02021-04-22T10:08:34Windows:

py -m pip install hydroeval==0.1.0

Unix/macOs:

pip install hydroeval==0.1.0

hydroeval 0.0.32019-09-08T09:22:05Windows:

py -m pip install hydroeval==0.0.3

Unix/macOs:

pip install hydroeval==0.0.3

hydroeval 0.0.22018-11-29T18:23:14Windows:

py -m pip install hydroeval==0.0.2

Unix/macOs:

pip install hydroeval==0.0.2

hydroeval 0.0.1.post12018-10-26T10:05:59Windows:

py -m pip install hydroeval==0.0.1.post1

Unix/macOs:

pip install hydroeval==0.0.1.post1

hydroeval 0.0.12018-10-26T09:52:21Windows:

py -m pip install hydroeval==0.0.1

Unix/macOs:

pip install hydroeval==0.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_hydroeval_downloaded_file>

On Unix/macOs:

pip install <path_to_hydroeval_downloaded_file>


List distribution:

- hydroeval-0.0.1-py2-none-any.whl
- hydroeval-0.0.1-py3-none-any.whl
- hydroeval-0.0.1.tar.gz
- hydroeval-0.0.1.post1-py2-none-any.whl
- hydroeval-0.0.1.post1-py3-none-any.whl
- hydroeval-0.0.1.post1.tar.gz
- hydroeval-0.0.2-py2-none-any.whl
- hydroeval-0.0.2-py3-none-any.whl
- hydroeval-0.0.2.tar.gz
- hydroeval-0.0.3-py2-none-any.whl
- hydroeval-0.0.3-py3-none-any.whl
- hydroeval-0.0.3.tar.gz
- hydroeval-0.1.0-py3-none-any.whl
- hydroeval-0.1.0.tar.gz


Project link:

- Download
- Bug Tracker
- Documentation
- Source Code