Install SDKs
This page explains how to install and update Macrometa SDKs.
Install SDKs
- Javascript
- Python
You have several options when installing this SDK.
With NPM:
npm install jsc8
If you want to use the SDK outside of the current directory, you can also install it globally using the --global
flag:
npm install --global jsc8
To install the SDK in a notebook:
!npm install jsc8 --save
From GitHub source:
git clone https://github.com/macrometacorp/jsc8.git
cd jsC8
npm install
npm run dist
note
pyC8 requires Python 3.5+. Python 3.6 or higher is recommended.
You can install the pyC8 SDK with pip:
pip install pyC8
To install the SDK in a notebook:
!pip install pyC8
Check Installed SDK Version
To check which version of the SDK is currently installed, run the following command in your terminal:
- Javascript
- Python
npm view jsc8 version
pip show pyC8
Update SDKs
Run the following command in your terminal to update the SDK.
- Javascript
- Python
npm update jsC8
pip install --upgrade pyC8
Reference
You can follow the following links for further reference regarding the SDK's: