> ## Documentation Index
> Fetch the complete documentation index at: https://docs.usemoonshine.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Inital Setup

> Get started with the Moonshine SDK

<img className="block dark:hidden" src="https://mintcdn.com/moonshine/JqegijyZHY_tCK3P/images/SDK_light.png?fit=max&auto=format&n=JqegijyZHY_tCK3P&q=85&s=6aa60cb3ff904dbdcc9e6e67533ebfde" alt="Hero Light" width="2064" height="1104" data-path="images/SDK_light.png" />

<img className="hidden dark:block" src="https://mintcdn.com/moonshine/JqegijyZHY_tCK3P/images/SDK_dark.png?fit=max&auto=format&n=JqegijyZHY_tCK3P&q=85&s=b8f116cb2eebafb0a2377d93d04f3fc8" alt="Hero Dark" title="" width="2064" height="1104" data-path="images/SDK_dark.png" />

## Install Moonshine

Install the `magic-moonshine` package

<Info>
  **Prerequisite**: Ensure you have Python version 3.9 or higher installed before proceeding.
</Info>

<CodeGroup>
  ```bash pip theme={null}
  pip install magic-moonshine
  ```
</CodeGroup>

## Create and Configure

<Steps>
  <Step title="Create a Token">
    Navigate to the `tokens` Section in [Console > Settings](https://app.usemoonshine.com/settings) and create a **token** as per the [console basics](http://docs.usemoonshine.com/console-docs/quickstart)
  </Step>

  <Step title="Configure in code">
    <CodeGroup>
      ```python python theme={null}
      import moonshine
      moonshine.config('YOUR TOKEN HERE')
      ```
    </CodeGroup>
  </Step>
</Steps>
