Getting Mantle SDK set up
In order to pip install the Mantle SDK package using SSH, you need to set up an SSH key for your GitHub account. If you already have one, you can move on to the Install with pip section.
mantle-sdk
GitHub repositoryIf your output contains id_rsa
and id_rsa.pub
, then you have an existing SSH key and can skip to the section titled “Adding a new SSH key to your GitHub account.”
yes
and press enterIf you have any issues with the above steps please refer to the following documentation for more information: https://docs.github.com/en/authentication/troubleshooting-ssh.
To install the Mantle SDK package using pip, use the following command:
When including the package as a requirement in a requirements.txt
file, use the following:
@latest
to the pip install command ensures you are pulling the latest version of the Mantle SDK. To pin to a specific release or branch of the sdk you can use @release_tag
or @branch_name
To use the Mantle SDK in your python code, you can import the mantlebio
package and create a new MantleClient
instance:
Getting Mantle SDK set up
In order to pip install the Mantle SDK package using SSH, you need to set up an SSH key for your GitHub account. If you already have one, you can move on to the Install with pip section.
mantle-sdk
GitHub repositoryIf your output contains id_rsa
and id_rsa.pub
, then you have an existing SSH key and can skip to the section titled “Adding a new SSH key to your GitHub account.”
yes
and press enterIf you have any issues with the above steps please refer to the following documentation for more information: https://docs.github.com/en/authentication/troubleshooting-ssh.
To install the Mantle SDK package using pip, use the following command:
When including the package as a requirement in a requirements.txt
file, use the following:
@latest
to the pip install command ensures you are pulling the latest version of the Mantle SDK. To pin to a specific release or branch of the sdk you can use @release_tag
or @branch_name
To use the Mantle SDK in your python code, you can import the mantlebio
package and create a new MantleClient
instance: