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

How to install GTC via python pip




GTC - The GUM Tree Calculator for Python, it belongs to Classifiers:

- Development Status :: 4 - Beta
- Intended Audience :: Science/Research
- Programming Language :: Python :: 2
- Programming Language :: Python :: 2.7
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.5
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Topic :: Scientific/Engineering
- Topic :: Software Development

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



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_GTC_env

- Active the virtual environment

test_GTC_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_GTC_env

- Active the virtual environment

source test_GTC_env/bin/active


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

To install GTC on Windows(CMD):

py -m pip install GTC

To install GTC on Unix/macOs:

pip install GTC


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

Example:

pip install GTC==1.0.0


Please see the version list below table:

VersionReleased dateCommand
GTC 1.4.02022-07-18T23:48:35Windows:

py -m pip install GTC==1.4.0

Unix/macOs:

pip install GTC==1.4.0

GTC 1.3.82022-04-01T03:48:07Windows:

py -m pip install GTC==1.3.8

Unix/macOs:

pip install GTC==1.3.8

GTC 1.3.72022-02-24T01:10:43Windows:

py -m pip install GTC==1.3.7

Unix/macOs:

pip install GTC==1.3.7

GTC 1.3.62021-09-05T21:25:58Windows:

py -m pip install GTC==1.3.6

Unix/macOs:

pip install GTC==1.3.6

GTC 1.3.52021-08-18T23:50:58Windows:

py -m pip install GTC==1.3.5

Unix/macOs:

pip install GTC==1.3.5

GTC 1.3.42021-05-14T00:11:23Windows:

py -m pip install GTC==1.3.4

Unix/macOs:

pip install GTC==1.3.4

GTC 1.3.32021-02-16T05:02:25Windows:

py -m pip install GTC==1.3.3

Unix/macOs:

pip install GTC==1.3.3

GTC 1.3.22020-09-15T22:39:39Windows:

py -m pip install GTC==1.3.2

Unix/macOs:

pip install GTC==1.3.2

GTC 1.3.12020-08-21T02:31:47Windows:

py -m pip install GTC==1.3.1

Unix/macOs:

pip install GTC==1.3.1

GTC 1.3.02020-07-28T04:58:04Windows:

py -m pip install GTC==1.3.0

Unix/macOs:

pip install GTC==1.3.0

GTC 1.2.12020-04-01T01:51:10Windows:

py -m pip install GTC==1.2.1

Unix/macOs:

pip install GTC==1.2.1

GTC 1.2.02019-10-16T02:44:31Windows:

py -m pip install GTC==1.2.0

Unix/macOs:

pip install GTC==1.2.0

GTC 1.1.02019-05-30T05:14:26Windows:

py -m pip install GTC==1.1.0

Unix/macOs:

pip install GTC==1.1.0

GTC 1.0.02018-11-15T22:34:34Windows:

py -m pip install GTC==1.0.0

Unix/macOs:

pip install GTC==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_GTC_downloaded_file>

On Unix/macOs:

pip install <path_to_GTC_downloaded_file>


List distribution:

- GTC-1.0.0-py2.py3-none-any.whl
- GTC-1.0.0.tar.gz
- GTC-1.1.0-py2.py3-none-any.whl
- GTC-1.1.0.tar.gz
- GTC-1.2.0-py2.py3-none-any.whl
- GTC-1.2.0.tar.gz
- GTC-1.2.1-py2.py3-none-any.whl
- GTC-1.2.1.tar.gz
- GTC-1.3.0-py2.py3-none-any.whl
- GTC-1.3.0.tar.gz
- GTC-1.3.1-py2.py3-none-any.whl
- GTC-1.3.1.tar.gz
- GTC-1.3.2-py2.py3-none-any.whl
- GTC-1.3.2.tar.gz
- GTC-1.3.3-py2.py3-none-any.whl
- GTC-1.3.3.tar.gz
- GTC-1.3.4-py2.py3-none-any.whl
- GTC-1.3.4.tar.gz
- GTC-1.3.5-py2.py3-none-any.whl
- GTC-1.3.5.tar.gz
- GTC-1.3.6-py2.py3-none-any.whl
- GTC-1.3.6.tar.gz
- GTC-1.3.7-py2.py3-none-any.whl
- GTC-1.3.7.tar.gz
- GTC-1.3.8-py2.py3-none-any.whl
- GTC-1.3.8.tar.gz
- GTC-1.4.0-py2.py3-none-any.whl
- GTC-1.4.0.tar.gz


Project link:

- Homepage