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

How to install Tectonic-Utils via python pip




Tectonic-Utils - A small package of useful geophysics utilities, it belongs to Classifiers:

- License :: OSI Approved :: MIT License
- Operating System :: OS Independent

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



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_Tectonic-Utils_env

- Active the virtual environment

test_Tectonic-Utils_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_Tectonic-Utils_env

- Active the virtual environment

source test_Tectonic-Utils_env/bin/active


Step 2: OK, now, let flow below content to start the installation Tectonic-Utils

To install Tectonic-Utils on Windows(CMD):

py -m pip install Tectonic-Utils

To install Tectonic-Utils on Unix/macOs:

pip install Tectonic-Utils


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

Example:

pip install Tectonic-Utils==0.0.1


Please see the version list below table:

VersionReleased dateCommand
Tectonic-Utils 0.0.92022-07-30T22:05:39Windows:

py -m pip install Tectonic-Utils==0.0.9

Unix/macOs:

pip install Tectonic-Utils==0.0.9

Tectonic-Utils 0.0.82021-10-01T07:54:26Windows:

py -m pip install Tectonic-Utils==0.0.8

Unix/macOs:

pip install Tectonic-Utils==0.0.8

Tectonic-Utils 0.0.72021-07-14T18:13:46Windows:

py -m pip install Tectonic-Utils==0.0.7

Unix/macOs:

pip install Tectonic-Utils==0.0.7

Tectonic-Utils 0.0.62021-06-21T03:58:51Windows:

py -m pip install Tectonic-Utils==0.0.6

Unix/macOs:

pip install Tectonic-Utils==0.0.6

Tectonic-Utils 0.0.52021-03-13T21:31:04Windows:

py -m pip install Tectonic-Utils==0.0.5

Unix/macOs:

pip install Tectonic-Utils==0.0.5

Tectonic-Utils 0.0.42021-03-08T21:11:39Windows:

py -m pip install Tectonic-Utils==0.0.4

Unix/macOs:

pip install Tectonic-Utils==0.0.4

Tectonic-Utils 0.0.32021-01-18T17:14:28Windows:

py -m pip install Tectonic-Utils==0.0.3

Unix/macOs:

pip install Tectonic-Utils==0.0.3

Tectonic-Utils 0.0.22021-01-02T21:13:12Windows:

py -m pip install Tectonic-Utils==0.0.2

Unix/macOs:

pip install Tectonic-Utils==0.0.2

Tectonic-Utils 0.0.12020-12-27T04:08:00Windows:

py -m pip install Tectonic-Utils==0.0.1

Unix/macOs:

pip install Tectonic-Utils==0.0.1


Step 4: Otherwise, you can install Tectonic-Utils from local archives:

Download the distribution file from Tectonic_Utils-0.0.9.tar.gz or the specific Tectonic-Utils version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_Tectonic-Utils_downloaded_file>

On Unix/macOs:

pip install <path_to_Tectonic-Utils_downloaded_file>


List distribution:


Project link:

- Homepage