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

How to install flownet via python pip




flownet - Simplified training of reservoir simulation models, it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v3 (GPLv3)

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



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_flownet_env

- Active the virtual environment

test_flownet_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_flownet_env

- Active the virtual environment

source test_flownet_env/bin/active


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

To install flownet on Windows(CMD):

py -m pip install flownet

To install flownet on Unix/macOs:

pip install flownet


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

Example:

pip install flownet==0.1.0


Please see the version list below table:

VersionReleased dateCommand
flownet 0.5.32021-10-01T04:44:35Windows:

py -m pip install flownet==0.5.3

Unix/macOs:

pip install flownet==0.5.3

flownet 0.5.22021-03-19T15:14:31Windows:

py -m pip install flownet==0.5.2

Unix/macOs:

pip install flownet==0.5.2

flownet 0.5.12021-03-03T09:29:24Windows:

py -m pip install flownet==0.5.1

Unix/macOs:

pip install flownet==0.5.1

flownet 0.5.02021-02-26T15:08:50Windows:

py -m pip install flownet==0.5.0

Unix/macOs:

pip install flownet==0.5.0

flownet 0.4.02020-11-18T17:12:36Windows:

py -m pip install flownet==0.4.0

Unix/macOs:

pip install flownet==0.4.0

flownet 0.3.02020-09-14T15:32:58Windows:

py -m pip install flownet==0.3.0

Unix/macOs:

pip install flownet==0.3.0

flownet 0.2.02020-06-25T07:50:19Windows:

py -m pip install flownet==0.2.0

Unix/macOs:

pip install flownet==0.2.0

flownet 0.1.12020-04-15T10:02:15Windows:

py -m pip install flownet==0.1.1

Unix/macOs:

pip install flownet==0.1.1

flownet 0.1.02020-04-14T06:02:16Windows:

py -m pip install flownet==0.1.0

Unix/macOs:

pip install flownet==0.1.0


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

Download the distribution file from flownet-0.5.3-py3-none-any.whl or the specific flownet version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_flownet_downloaded_file>

On Unix/macOs:

pip install <path_to_flownet_downloaded_file>


List distribution:

- flownet-0.1.0-py3-none-any.whl
- flownet-0.1.1-py3-none-any.whl
- flownet-0.2.0-py3-none-any.whl
- flownet-0.3.0-py3-none-any.whl (python version ~=3.6)
- flownet-0.4.0-py3-none-any.whl (python version ~=3.6)
- flownet-0.5.0-py3-none-any.whl (python version ~=3.6)
- flownet-0.5.1-py3-none-any.whl (python version ~=3.6)
- flownet-0.5.2-py3-none-any.whl (python version ~=3.6)
- flownet-0.5.3-py3-none-any.whl (python version ~=3.7)


Project link:

- Homepage