# Manual install (/en/realtime-media/rtm/reference/downloads/flutter)

> For AI agents: see the complete documentation index at [llms.txt](/llms.txt).

To manually install the Signaling SDK for Flutter:

1. Open a terminal and execute the following command to create a new Flutter project:

   ```bash
   flutter create project_name
   ```

2. Open the project in your IDE. Add the Signaling SDK dependency to `pubspec.yaml` under `dependencies`:

   ```yaml
   dependencies:
     # Add the Signaling SDK dependency, use the latest version number
     agora_rtm: ^2.2.1
   ```

<CalloutContainer type="info">
  <CalloutDescription>
    To integrate Signaling SDK version 2.2.1 or above and RTC SDK version 4.3.0 or above at the same time, refer to [Handle integration issues](/en/api-reference/faq/integration/rtm2_rtc_integration_issue).
  </CalloutDescription>
</CalloutContainer>

1. To install the dependencies, open the terminal and execute the following command in the project path:

   ```bash
   flutter pub get
   ```

    
  
