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

How to install hyvr via python pip




hyvr - A python package for simulating hydrogeological virtual realities, it belongs to Classifiers:

- Intended Audience :: Education
- Intended Audience :: End Users/Desktop

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



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_hyvr_env

- Active the virtual environment

test_hyvr_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_hyvr_env

- Active the virtual environment

source test_hyvr_env/bin/active


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

To install hyvr on Windows(CMD):

py -m pip install hyvr

To install hyvr on Unix/macOs:

pip install hyvr


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

Example:

pip install hyvr==0.1


Please see the version list below table:

VersionReleased dateCommand
hyvr 1.1.02020-01-19T09:57:32Windows:

py -m pip install hyvr==1.1.0

Unix/macOs:

pip install hyvr==1.1.0

hyvr 1.0.32019-10-26T19:48:50Windows:

py -m pip install hyvr==1.0.3

Unix/macOs:

pip install hyvr==1.0.3

hyvr 1.0.22019-10-26T19:45:17Windows:

py -m pip install hyvr==1.0.2

Unix/macOs:

pip install hyvr==1.0.2

hyvr 1.0.12019-10-20T17:26:06Windows:

py -m pip install hyvr==1.0.1

Unix/macOs:

pip install hyvr==1.0.1

hyvr 1.0.02018-12-06T18:40:43Windows:

py -m pip install hyvr==1.0.0

Unix/macOs:

pip install hyvr==1.0.0

hyvr 0.2.32018-07-19T16:40:04Windows:

py -m pip install hyvr==0.2.3

Unix/macOs:

pip install hyvr==0.2.3

hyvr 0.2.22018-06-12T17:07:11Windows:

py -m pip install hyvr==0.2.2

Unix/macOs:

pip install hyvr==0.2.2

hyvr 0.22018-06-12T13:24:12Windows:

py -m pip install hyvr==0.2

Unix/macOs:

pip install hyvr==0.2

hyvr 0.12018-02-02T19:55:19Windows:

py -m pip install hyvr==0.1

Unix/macOs:

pip install hyvr==0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_hyvr_downloaded_file>

On Unix/macOs:

pip install <path_to_hyvr_downloaded_file>


List distribution:

- hyvr-0.1-py3-none-any.whl
- hyvr-0.1.zip
- hyvr-0.2.tar.gz (python version >=3.4)
- hyvr-0.2.2-cp35-cp35m-win_amd64.whl (python version >=3.4)
- hyvr-0.2.2.tar.gz (python version >=3.4)
- hyvr-0.2.3-cp35-cp35m-win_amd64.whl (python version >=3.4)
- hyvr-0.2.3.tar.gz (python version >=3.4)
- hyvr-1.0.0.tar.gz (python version >=3.4)
- hyvr-1.0.1.tar.gz (python version >=3.4)
- hyvr-1.0.2-cp37-cp37m-win_amd64.whl (python version >=3.4)
- hyvr-1.0.2.0-cp37-cp37m-win_amd64.whl (python version >=3.4)
- hyvr-1.0.2.0.tar.gz (python version >=3.4)
- hyvr-1.0.3-cp37-cp37m-win_amd64.whl (python version >=3.4)
- hyvr-1.0.3.tar.gz (python version >=3.4)
- hyvr-1.1.0.tar.gz (python version >=3.4)


Project link:

- Homepage