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

How to install TotalDepth via python pip




TotalDepth - TotalDepth is a software collection that can process petrophysical data such as wireline logs., it belongs to Classifiers:

- License :: OSI Approved :: GNU General Public License v2 (GPLv2)

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



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_TotalDepth_env

- Active the virtual environment

test_TotalDepth_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_TotalDepth_env

- Active the virtual environment

source test_TotalDepth_env/bin/active


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

To install TotalDepth on Windows(CMD):

py -m pip install TotalDepth

To install TotalDepth on Unix/macOs:

pip install TotalDepth


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

Example:

pip install TotalDepth==0.2.0


Please see the version list below table:

VersionReleased dateCommand
TotalDepth 0.4.02021-09-18T09:37:08Windows:

py -m pip install TotalDepth==0.4.0

Unix/macOs:

pip install TotalDepth==0.4.0

TotalDepth 0.3.52021-04-21T11:20:56Windows:

py -m pip install TotalDepth==0.3.5

Unix/macOs:

pip install TotalDepth==0.3.5

TotalDepth 0.3.22021-01-29T19:22:33Windows:

py -m pip install TotalDepth==0.3.2

Unix/macOs:

pip install TotalDepth==0.3.2

TotalDepth 0.3.12020-06-15T19:11:48Windows:

py -m pip install TotalDepth==0.3.1

Unix/macOs:

pip install TotalDepth==0.3.1

TotalDepth 0.3.02020-01-01T11:51:40Windows:

py -m pip install TotalDepth==0.3.0

Unix/macOs:

pip install TotalDepth==0.3.0

TotalDepth 0.2.12018-04-21T12:14:15Windows:

py -m pip install TotalDepth==0.2.1

Unix/macOs:

pip install TotalDepth==0.2.1

TotalDepth 0.2.02017-09-25T16:22:11Windows:

py -m pip install TotalDepth==0.2.0

Unix/macOs:

pip install TotalDepth==0.2.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_TotalDepth_downloaded_file>

On Unix/macOs:

pip install <path_to_TotalDepth_downloaded_file>


List distribution:


Project link:

- Homepage