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

How to install ton-http-api via python pip




ton-http-api - HTTP API for TON (The Open Network), it belongs to Classifiers:

- Topic :: Software Development
- Topic :: Software Development :: Libraries

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



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_ton-http-api_env

- Active the virtual environment

test_ton-http-api_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_ton-http-api_env

- Active the virtual environment

source test_ton-http-api_env/bin/active


Step 2: OK, now, let flow below content to start the installation ton-http-api

To install ton-http-api on Windows(CMD):

py -m pip install ton-http-api

To install ton-http-api on Unix/macOs:

pip install ton-http-api


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

Example:

pip install ton-http-api==2


Please see the version list below table:

VersionReleased dateCommand
ton-http-api 2.0.202022-08-13T13:16:49Windows:

py -m pip install ton-http-api==2.0.20

Unix/macOs:

pip install ton-http-api==2.0.20

ton-http-api 2.0.192022-08-02T01:33:11Windows:

py -m pip install ton-http-api==2.0.19

Unix/macOs:

pip install ton-http-api==2.0.19

ton-http-api 2.0.182022-07-28T21:44:30Windows:

py -m pip install ton-http-api==2.0.18

Unix/macOs:

pip install ton-http-api==2.0.18

ton-http-api 2.0.172022-07-17T12:33:26Windows:

py -m pip install ton-http-api==2.0.17

Unix/macOs:

pip install ton-http-api==2.0.17

ton-http-api 2.0.162022-07-04T20:40:34Windows:

py -m pip install ton-http-api==2.0.16

Unix/macOs:

pip install ton-http-api==2.0.16

ton-http-api 2.0.152022-07-04T20:35:37Windows:

py -m pip install ton-http-api==2.0.15

Unix/macOs:

pip install ton-http-api==2.0.15

ton-http-api 2.0.142022-07-04T18:53:33Windows:

py -m pip install ton-http-api==2.0.14

Unix/macOs:

pip install ton-http-api==2.0.14

ton-http-api 2.0.132022-07-04T18:35:55Windows:

py -m pip install ton-http-api==2.0.13

Unix/macOs:

pip install ton-http-api==2.0.13

ton-http-api 2.0.122022-06-28T22:31:25Windows:

py -m pip install ton-http-api==2.0.12

Unix/macOs:

pip install ton-http-api==2.0.12

ton-http-api 2.0.112022-06-28T07:49:07Windows:

py -m pip install ton-http-api==2.0.11

Unix/macOs:

pip install ton-http-api==2.0.11

ton-http-api 2.0.102022-06-26T11:53:57Windows:

py -m pip install ton-http-api==2.0.10

Unix/macOs:

pip install ton-http-api==2.0.10

ton-http-api 2.0.92022-06-25T21:17:48Windows:

py -m pip install ton-http-api==2.0.9

Unix/macOs:

pip install ton-http-api==2.0.9

ton-http-api 2.0.82022-06-24T21:03:07Windows:

py -m pip install ton-http-api==2.0.8

Unix/macOs:

pip install ton-http-api==2.0.8

ton-http-api 2.0.72022-06-24T20:44:25Windows:

py -m pip install ton-http-api==2.0.7

Unix/macOs:

pip install ton-http-api==2.0.7

ton-http-api 2.0.62022-06-24T20:34:36Windows:

py -m pip install ton-http-api==2.0.6

Unix/macOs:

pip install ton-http-api==2.0.6

ton-http-api 2.0.52022-06-24T20:28:15Windows:

py -m pip install ton-http-api==2.0.5

Unix/macOs:

pip install ton-http-api==2.0.5

ton-http-api 2.0.42022-06-22T15:45:42Windows:

py -m pip install ton-http-api==2.0.4

Unix/macOs:

pip install ton-http-api==2.0.4

ton-http-api 2.0.32022-06-20T13:01:30Windows:

py -m pip install ton-http-api==2.0.3

Unix/macOs:

pip install ton-http-api==2.0.3

ton-http-api 2.0.22022-06-17T20:42:03Windows:

py -m pip install ton-http-api==2.0.2

Unix/macOs:

pip install ton-http-api==2.0.2

ton-http-api 2.0.12022-06-15T09:48:44Windows:

py -m pip install ton-http-api==2.0.1

Unix/macOs:

pip install ton-http-api==2.0.1

ton-http-api 22022-06-14T08:52:26Windows:

py -m pip install ton-http-api==2

Unix/macOs:

pip install ton-http-api==2


Step 4: Otherwise, you can install ton-http-api from local archives:

Download the distribution file from ton-http-api-2.0.20.tar.gz or the specific ton-http-api version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_ton-http-api_downloaded_file>

On Unix/macOs:

pip install <path_to_ton-http-api_downloaded_file>


List distribution:


Project link:

- Homepage