Install BTCLI
Before you can start developing, you must install btcli
and then create Bittensor wallet.
Supported Python versions
- bittendor (SDK): Python 3.9-3.11 (reference: https://github.com/opentensor/bittensor/blob/master/setup.py#L86-L88)
- bittensor-cli: Python 3.9-3.12 (reference: https://github.com/opentensor/btcli/blob/main/setup.py#L91-L94 )
- bittensor-wallet: Python 3.9-3.12 (reference: https://github.com/opentensor/btwallet/blob/main/pyproject.toml#L34-L37)
Developer reference
For a full developer reference, see the Bittensor CLI section.
Install on macOS and Linux
You can install btcli
on your local machine directly from source. Make sure you verify your installation after you install.
Install from source
If you are using Ubuntu-Linux, the script will prompt for sudo
access to install all required apt-get packages.
-
Create Python virtual environment. Follow this guide on python.org.
-
Activate the new environment. Follow this guide on python.org
- Create and activate a virtual environment.
python3 -m venv btcli_venv
source btcli_venv/bin/activate
- Clone the Bittensor CLI repo.
git clone https://github.com/opentensor/btcli.git
cd
intobtcli
directory.
cd btcli
- Install
pip3 install .
Install on Windows
To install and run Bittensor SDK on Windows you must install WSL 2 (Windows Subsystem for Linux) on Windows and select Ubuntu Linux distribution.
After you installed the above, follow the same installation steps described above in Install on macOS and Linux.
While wallet transactions like delegating, transfer, registering, staking can be performed on a Windows machine using WSL 2, the mining and validating operations are not recommended and are not supported on Windows machines.
Verify the installation
btcli --version
which will give you the below output:
BTCLI version: <version number>
You will see the version number you installed in place of <version number>
.
Configuration
You can set the commonly used values, such as your hotkey and coldkey names, the default chain URL or the network name you use, and more, in config.yml
. You can override these values by explicitly passing them in the command line for any btcli
command.
Example config file
The default location of the config file is: ~/.bittensor/config.yml
. An example of a config.yml
is shown below:
chain: ws://127.0.0.1:9945
network: local
no_cache: False
wallet_hotkey: hotkey-user1
wallet_name: coldkey-user1
wallet_path: ~/.bittensor/wallets
metagraph_cols:
ACTIVE: true
AXON: true
COLDKEY: true
CONSENSUS: true
DIVIDENDS: true
EMISSION: true
HOTKEY: true
INCENTIVE: true
RANK: true
STAKE: true
TRUST: true
UID: true
UPDATED: true
VAL: true
VTRUST: true
If both chain
and network
config values are present in the config.yml
, then chain
has the higher precedence. The the btcli
command uses the chain
value.
For more help:
btcli config --help