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

How to install wton via python pip




wton - Universal TON wallet, it belongs to Classifiers:

- Environment :: Other Environment
- Intended Audience :: Financial and Insurance Industry
- Programming Language :: Python :: 3.11
- Topic :: Adaptive Technologies
- Topic :: Office/Business
- Topic :: Office/Business :: Financial

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



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_wton_env

- Active the virtual environment

test_wton_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_wton_env

- Active the virtual environment

source test_wton_env/bin/active


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

To install wton on Windows(CMD):

py -m pip install wton

To install wton on Unix/macOs:

pip install wton


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

Example:

pip install wton==0.0.1


Please see the version list below table:

VersionReleased dateCommand
wton 0.0.182022-08-18T05:14:49Windows:

py -m pip install wton==0.0.18

Unix/macOs:

pip install wton==0.0.18

wton 0.0.172022-08-10T19:22:49Windows:

py -m pip install wton==0.0.17

Unix/macOs:

pip install wton==0.0.17

wton 0.0.162022-08-10T18:39:12Windows:

py -m pip install wton==0.0.16

Unix/macOs:

pip install wton==0.0.16

wton 0.0.152022-07-29T06:27:54Windows:

py -m pip install wton==0.0.15

Unix/macOs:

pip install wton==0.0.15

wton 0.0.142022-07-26T22:41:09Windows:

py -m pip install wton==0.0.14

Unix/macOs:

pip install wton==0.0.14

wton 0.0.132022-07-26T22:27:18Windows:

py -m pip install wton==0.0.13

Unix/macOs:

pip install wton==0.0.13

wton 0.0.122022-07-22T21:29:44Windows:

py -m pip install wton==0.0.12

Unix/macOs:

pip install wton==0.0.12

wton 0.0.112022-07-15T10:55:43Windows:

py -m pip install wton==0.0.11

Unix/macOs:

pip install wton==0.0.11

wton 0.0.102022-07-15T10:50:22Windows:

py -m pip install wton==0.0.10

Unix/macOs:

pip install wton==0.0.10

wton 0.0.92022-07-14T16:12:25Windows:

py -m pip install wton==0.0.9

Unix/macOs:

pip install wton==0.0.9

wton 0.0.82022-07-14T16:03:23Windows:

py -m pip install wton==0.0.8

Unix/macOs:

pip install wton==0.0.8

wton 0.0.72022-07-08T15:25:27Windows:

py -m pip install wton==0.0.7

Unix/macOs:

pip install wton==0.0.7

wton 0.0.62022-07-08T14:56:27Windows:

py -m pip install wton==0.0.6

Unix/macOs:

pip install wton==0.0.6

wton 0.0.52022-07-08T13:40:39Windows:

py -m pip install wton==0.0.5

Unix/macOs:

pip install wton==0.0.5

wton 0.0.42022-07-08T13:38:35Windows:

py -m pip install wton==0.0.4

Unix/macOs:

pip install wton==0.0.4

wton 0.0.32022-07-08T13:25:34Windows:

py -m pip install wton==0.0.3

Unix/macOs:

pip install wton==0.0.3

wton 0.0.22022-07-08T13:18:57Windows:

py -m pip install wton==0.0.2

Unix/macOs:

pip install wton==0.0.2

wton 0.0.12022-07-08T13:14:48Windows:

py -m pip install wton==0.0.1

Unix/macOs:

pip install wton==0.0.1


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

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

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_wton_downloaded_file>

On Unix/macOs:

pip install <path_to_wton_downloaded_file>


List distribution:


Project link: