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

How to install tfc-client via python pip




tfc-client - A developer friendly Terraform Cloud API client, it belongs to Classifiers:

- Development Status :: 4 - Beta
- License :: OSI Approved
- License :: OSI Approved :: MIT License
- Operating System :: OS Independent
- Programming Language :: Python :: 3
- Programming Language :: Python :: 3.7
- Topic :: Software Development
- Topic :: Software Development :: Libraries

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



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_tfc-client_env

- Active the virtual environment

test_tfc-client_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_tfc-client_env

- Active the virtual environment

source test_tfc-client_env/bin/active


Step 2: OK, now, let flow below content to start the installation tfc-client

To install tfc-client on Windows(CMD):

py -m pip install tfc-client

To install tfc-client on Unix/macOs:

pip install tfc-client


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

Example:

pip install tfc-client==0.5.0


Please see the version list below table:

VersionReleased dateCommand
tfc-client 0.7.32020-11-24T14:39:54Windows:

py -m pip install tfc-client==0.7.3

Unix/macOs:

pip install tfc-client==0.7.3

tfc-client 0.7.22020-08-31T16:38:58Windows:

py -m pip install tfc-client==0.7.2

Unix/macOs:

pip install tfc-client==0.7.2

tfc-client 0.7.12019-11-26T15:47:35Windows:

py -m pip install tfc-client==0.7.1

Unix/macOs:

pip install tfc-client==0.7.1

tfc-client 0.7.02019-11-22T13:35:59Windows:

py -m pip install tfc-client==0.7.0

Unix/macOs:

pip install tfc-client==0.7.0

tfc-client 0.6.92019-11-15T14:10:59Windows:

py -m pip install tfc-client==0.6.9

Unix/macOs:

pip install tfc-client==0.6.9

tfc-client 0.6.82019-11-15T13:28:07Windows:

py -m pip install tfc-client==0.6.8

Unix/macOs:

pip install tfc-client==0.6.8

tfc-client 0.6.72019-11-15T11:53:07Windows:

py -m pip install tfc-client==0.6.7

Unix/macOs:

pip install tfc-client==0.6.7

tfc-client 0.6.62019-11-13T18:30:02Windows:

py -m pip install tfc-client==0.6.6

Unix/macOs:

pip install tfc-client==0.6.6

tfc-client 0.6.52019-11-12T15:25:26Windows:

py -m pip install tfc-client==0.6.5

Unix/macOs:

pip install tfc-client==0.6.5

tfc-client 0.6.02019-11-11T22:36:58Windows:

py -m pip install tfc-client==0.6.0

Unix/macOs:

pip install tfc-client==0.6.0

tfc-client 0.5.02019-11-11T09:54:51Windows:

py -m pip install tfc-client==0.5.0

Unix/macOs:

pip install tfc-client==0.5.0


Step 4: Otherwise, you can install tfc-client from local archives:

Download the distribution file from tfc_client-0.7.3-py3-none-any.whl or the specific tfc-client version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_tfc-client_downloaded_file>

On Unix/macOs:

pip install <path_to_tfc-client_downloaded_file>


List distribution:


Project link:

- Homepage