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

# Install with pip

> Instruction on how to install G4F on your computer

<Steps titleSize="h3">
  <Step title="Install Python & pip">
    G4F requires [`Python`](https://www.python.org/) to run. Ensure that you have Python installed on your system.
    You can check if you have `Python` installed by running the following command in your terminal:

    ```bash theme={null}
    user@mac-air:~$ python3 --version
    > Python 3.11.6
    ```

    <Note>We recommend using the latest python version `3.12.0`, or python `3.10+` at least.</Note>
  </Step>

  <Step title="Install G4F">
    You can install `g4f` using `pip`:

    <Tabs>
      <Tab title="pip">
        ```bash theme={null}
        pip install -U g4f
        ```
      </Tab>

      <Tab title="pip3">
        ```bash theme={null}
        pip3 install -U g4f
        ```
      </Tab>

      <Tab title="python">
        ```bash theme={null}
        python -m pip -U install g4f
        ```
      </Tab>

      <Tab title="pipx">
        ```bash theme={null}
        pipx install g4f
        ```
      </Tab>
    </Tabs>
  </Step>

  <Step title="Use G4F">
    All set ! You can now navigate to [Basic Usage](/docs/get-started/quickstart/use) for further instructions.

    <Card title="Start using G4F" icon="hand" href="/docs/get-started/quickstart/use">
      Basic Usage Instructions for `g4f`
    </Card>
  </Step>
</Steps>
