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

How to install welly via python pip




welly - Tools for making and managing well data., it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Science/Research
- License :: OSI Approved :: Apache Software License
- Natural Language :: English
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.10

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



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_welly_env

- Active the virtual environment

test_welly_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_welly_env

- Active the virtual environment

source test_welly_env/bin/active


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

To install welly on Windows(CMD):

py -m pip install welly

To install welly on Unix/macOs:

pip install welly


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

Example:

pip install welly==0.0.0


Please see the version list below table:

VersionReleased dateCommand
welly 0.5.22022-02-28T13:54:32Windows:

py -m pip install welly==0.5.2

Unix/macOs:

pip install welly==0.5.2

welly 0.5.12022-02-18T21:15:49Windows:

py -m pip install welly==0.5.1

Unix/macOs:

pip install welly==0.5.1

welly 0.5.02022-02-14T01:20:43Windows:

py -m pip install welly==0.5.0

Unix/macOs:

pip install welly==0.5.0

welly 0.4.102021-06-22T13:06:10Windows:

py -m pip install welly==0.4.10

Unix/macOs:

pip install welly==0.4.10

welly 0.4.92021-01-29T15:52:44Windows:

py -m pip install welly==0.4.9

Unix/macOs:

pip install welly==0.4.9

welly 0.4.82020-12-11T18:01:21Windows:

py -m pip install welly==0.4.8

Unix/macOs:

pip install welly==0.4.8

welly 0.4.72020-06-06T18:10:47Windows:

py -m pip install welly==0.4.7

Unix/macOs:

pip install welly==0.4.7

welly 0.4.62020-05-07T18:22:12Windows:

py -m pip install welly==0.4.6

Unix/macOs:

pip install welly==0.4.6

welly 0.4.52019-11-14T21:23:09Windows:

py -m pip install welly==0.4.5

Unix/macOs:

pip install welly==0.4.5

welly 0.4.42019-10-22T11:51:28Windows:

py -m pip install welly==0.4.4

Unix/macOs:

pip install welly==0.4.4

welly 0.4.32019-10-03T17:16:17Windows:

py -m pip install welly==0.4.3

Unix/macOs:

pip install welly==0.4.3

welly 0.4.22019-04-07T10:58:32Windows:

py -m pip install welly==0.4.2

Unix/macOs:

pip install welly==0.4.2

welly 0.4.12018-11-24T15:06:32Windows:

py -m pip install welly==0.4.1

Unix/macOs:

pip install welly==0.4.1

welly 0.4.02018-11-20T10:12:33Windows:

py -m pip install welly==0.4.0

Unix/macOs:

pip install welly==0.4.0

welly 0.3.52018-03-20T01:50:00Windows:

py -m pip install welly==0.3.5

Unix/macOs:

pip install welly==0.3.5

welly 0.3.42017-11-15T19:18:04Windows:

py -m pip install welly==0.3.4

Unix/macOs:

pip install welly==0.3.4

welly 0.3.32017-11-13T16:30:36Windows:

py -m pip install welly==0.3.3

Unix/macOs:

pip install welly==0.3.3

welly 0.3.22017-10-25T18:02:24Windows:

py -m pip install welly==0.3.2

Unix/macOs:

pip install welly==0.3.2

welly 0.3.12017-10-23T12:38:30Windows:

py -m pip install welly==0.3.1

Unix/macOs:

pip install welly==0.3.1

welly 0.3.02016-09-25T06:33:48Windows:

py -m pip install welly==0.3.0

Unix/macOs:

pip install welly==0.3.0

welly 0.2.12016-08-01T16:35:00Windows:

py -m pip install welly==0.2.1

Unix/macOs:

pip install welly==0.2.1

welly 0.1.02016-03-28T18:55:11Windows:

py -m pip install welly==0.1.0

Unix/macOs:

pip install welly==0.1.0

welly 0.0.02016-03-28T18:54:57Windows:

py -m pip install welly==0.0.0

Unix/macOs:

pip install welly==0.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_welly_downloaded_file>

On Unix/macOs:

pip install <path_to_welly_downloaded_file>


List distribution:


Project link:

- Homepage