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

How to install chia-tea via python pip




chia-tea - A library dedicated to chia-blockchain farmer., it belongs to Classifiers:

- Development Status :: 3 - Alpha
- Environment :: Console
- License :: OSI Approved :: BSD License
- License :: Other/Proprietary License
- Natural Language :: English
- Operating System :: Microsoft
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX
- Programming Language :: PL/SQL
- Programming Language :: Python :: 3.1
- Programming Language :: Python :: 3.7
- Programming Language :: Python :: 3.8
- Programming Language :: Python :: 3.9
- Programming Language :: Python :: 3.10
- Topic :: Communications
- Topic :: Communications :: Chat
- Topic :: Database
- Topic :: Scientific/Engineering
- Topic :: System
- Topic :: System :: Monitoring

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



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_chia-tea_env

- Active the virtual environment

test_chia-tea_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_chia-tea_env

- Active the virtual environment

source test_chia-tea_env/bin/active


Step 2: OK, now, let flow below content to start the installation chia-tea

To install chia-tea on Windows(CMD):

py -m pip install chia-tea

To install chia-tea on Unix/macOs:

pip install chia-tea


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

Example:

pip install chia-tea==0.1.0


Please see the version list below table:

VersionReleased dateCommand
chia-tea 0.3.02021-12-05T21:52:46Windows:

py -m pip install chia-tea==0.3.0

Unix/macOs:

pip install chia-tea==0.3.0

chia-tea 0.2.02021-12-02T18:03:08Windows:

py -m pip install chia-tea==0.2.0

Unix/macOs:

pip install chia-tea==0.2.0

chia-tea 0.1.02021-08-22T17:31:57Windows:

py -m pip install chia-tea==0.1.0

Unix/macOs:

pip install chia-tea==0.1.0


Step 4: Otherwise, you can install chia-tea from local archives:

Download the distribution file from chia-tea-0.3.0.tar.gz or the specific chia-tea version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_chia-tea_downloaded_file>

On Unix/macOs:

pip install <path_to_chia-tea_downloaded_file>


List distribution:

- chia-tea-0.1.0.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.1.0-py3-none-any.whl (python version >=3.7,<4.0)
- chia-tea-0.2.0rc5.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.2.0rc5-py3-none-any.whl (python version >=3.7,<4.0)
- chia-tea-0.2.0rc6.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.2.0rc6-py3-none-any.whl (python version >=3.7,<4.0)
- chia-tea-0.2.0rc7.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.2.0rc7-py3-none-any.whl (python version >=3.7,<4.0)
- chia-tea-0.2.0rc8.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.2.0rc8-py3-none-any.whl (python version >=3.7,<4.0)
- chia-tea-0.2.0rc9.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.2.0rc9-py3-none-any.whl (python version >=3.7,<4.0)
- chia-tea-0.2.0.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.2.0-py3-none-any.whl (python version >=3.7,<4.0)
- chia-tea-0.3.0b1.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.3.0b1-py3-none-any.whl (python version >=3.7,<4.0)
- chia-tea-0.3.0.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.3.0-py3-none-any.whl (python version >=3.7,<4.0)
- chia-tea-0.3.1rc1.tar.gz (python version >=3.7,<4.0)
- chia_tea-0.3.1rc1-py3-none-any.whl (python version >=3.7,<4.0)


Project link:

- Homepage
- Repository