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

How to install hodl via python pip




hodl - A friendly, no-nonsense tool to instantaneously check cryptocurrency prices., it belongs to Classifiers:

- Intended Audience :: Information Technology
- Intended Audience :: Other Audience
- Intended Audience :: System Administrators
- Operating System :: MacOS
- Operating System :: Microsoft :: Windows
- Operating System :: POSIX :: Linux
- Topic :: Office/Business
- Topic :: Office/Business :: Financial
- Topic :: Other/Nonlisted Topic
- Topic :: Terminals

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



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_hodl_env

- Active the virtual environment

test_hodl_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_hodl_env

- Active the virtual environment

source test_hodl_env/bin/active


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

To install hodl on Windows(CMD):

py -m pip install hodl

To install hodl on Unix/macOs:

pip install hodl


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

Example:

pip install hodl==1.0.0.dev3                                                        pre-release


Please see the version list below table:

VersionReleased dateCommand
hodl 1.2.02018-03-11T10:33:27Windows:

py -m pip install hodl==1.2.0

Unix/macOs:

pip install hodl==1.2.0

hodl 1.1.22018-03-01T21:38:20Windows:

py -m pip install hodl==1.1.2

Unix/macOs:

pip install hodl==1.1.2

hodl 1.1.12018-02-28T21:36:04Windows:

py -m pip install hodl==1.1.1

Unix/macOs:

pip install hodl==1.1.1

hodl 1.1.02018-02-19T20:38:17Windows:

py -m pip install hodl==1.1.0

Unix/macOs:

pip install hodl==1.1.0

hodl 1.0.02018-01-17T19:25:05Windows:

py -m pip install hodl==1.0.0

Unix/macOs:

pip install hodl==1.0.0


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_hodl_downloaded_file>

On Unix/macOs:

pip install <path_to_hodl_downloaded_file>


List distribution:

- hodl-1.0.0.dev3.tar.gz
- hodl-1.0.0a1.tar.gz
- hodl-1.0.0b1.tar.gz
- hodl-1.0.0.tar.gz
- hodl-1.1.0.tar.gz
- hodl-1.1.1.tar.gz
- hodl-1.1.2.tar.gz
- hodl-1.2.0.tar.gz


Project link:

- Homepage