UiPath Documentation
getting-started
latest
false
Guide de démarrage du développeur
  • Introduction
    • Vue d'ensemble (Overview)
    • Environment set up
  • Commencer avec les agents UiPath
  • Premiers pas avec les agents UiPath utilisant LangGraph
  • Créer un agent low-code dans Studio Web
  • Ajouter des outils à votre agent UiPath
  • Getting Started with UiPath Maestro Flow
Important :
Ce contenu a été traduit à l'aide d'une traduction automatique. La localisation du contenu nouvellement publié peut prendre 1 à 2 semaines avant d’être disponible.

Environment set up

Install the UiPath CLI and log into your UiPath Cloud account, configure your coding agent with UiPath skills, and install the UiPath VS Code extensions.

Vue d'ensemble (Overview)​

The tutorials in this Getting Started developer guide use a combination of the following:

This page centralizes the required installation steps for the list above, with validation steps to confirm successful installation.

Step 1 - Install the UiPath CLI and Tools​

The UiPath CLI (uip) is a cross-platform tool for UiPath authentication, project scaffolding, and deployment. It uses a plugin system: the base CLI handles auth, and you install tools for the project types you build. See the allowlist for tools installed automatically when you use them the first time. Each tutorial will include instructions for those that need to be manually installed.

  1. Installez la CLI de base globalement:

    npm install -g @uipath/cli
    npm install -g @uipath/cli
    
  2. Vérifiez l'installation:

    uip --version
    uip --version
    

    Vous devriez consulter 1.200.0 ou une version ultérieure.

  3. Verify installed tools:

    uip tools list
    uip tools list
    

    Confirm you see a list of tools with their versions installed.

    {
       "Result": "Success",
       "Code": "ToolList",
       "Data": [
          {
             "Name": "solution-tool",
             "Version": "1.200.0",
             "Description": "Create, pack, publish, and deploy UiPath Automation Solutions.",
             "CommandPrefix": "solution"
          },
          {
             "Name": "agent-tool",
             "Version": "1.200.0",
             "Description": "cli plugin for creating and managing UiPath low-code agents",
             "CommandPrefix": "agent"
          },
          {
             "Name": "codedagent-tool",
             "Version": "1.200.0",
             "Description": "Build, run, deploy, and manage AI Agents.",
             "CommandPrefix": "codedagent"
          },
          {
             "Name": "rpa-tool",
             "Version": "1.200.1",
             "Description": "Tool for creating and managing UiPath RPA projects",
             "CommandPrefix": "rpa"
          },
          {
             "Name": "maestro-tool",
             "Version": "1.200.0",
             "Description": "Create, debug, and run Maestro projects and jobs.",
             "CommandPrefix": "maestro"
          }
       ]
    }
    {
       "Result": "Success",
       "Code": "ToolList",
       "Data": [
          {
             "Name": "solution-tool",
             "Version": "1.200.0",
             "Description": "Create, pack, publish, and deploy UiPath Automation Solutions.",
             "CommandPrefix": "solution"
          },
          {
             "Name": "agent-tool",
             "Version": "1.200.0",
             "Description": "cli plugin for creating and managing UiPath low-code agents",
             "CommandPrefix": "agent"
          },
          {
             "Name": "codedagent-tool",
             "Version": "1.200.0",
             "Description": "Build, run, deploy, and manage AI Agents.",
             "CommandPrefix": "codedagent"
          },
          {
             "Name": "rpa-tool",
             "Version": "1.200.1",
             "Description": "Tool for creating and managing UiPath RPA projects",
             "CommandPrefix": "rpa"
          },
          {
             "Name": "maestro-tool",
             "Version": "1.200.0",
             "Description": "Create, debug, and run Maestro projects and jobs.",
             "CommandPrefix": "maestro"
          }
       ]
    }
    

Étape 2: installez des compétences UiPath pour votre agent de codage (facultatif)​

If you are using a coding agent (Claude Code, Cursor, Copilot, Gemini, or Codex) alongside the CLI, installing the UiPath skills gives it knowledge of agent project structure, CLI commands, and best practices. Before running the command to install the skills for your preferred coding agent, first make sure you have it installed. The example below installs the skills for Claude Code:

uip skills install --agent claude
uip skills install --agent claude

Replace claude with your agent if you are using a different one. You can run uip skills install --help and look at the --agent <agent> option for the list of supported coding agents.

Skills install globally to your home directory (~/.uipath/.skills/) and are available in every project from this point forward.

Step 3 - Install the UiPath Maestro extension for VS Code (optional)​

Tutorials that build a Maestro Flow, a BPMN diagram, or a case plan use this extension to open those files on a visual canvas instead of as raw text. It also signs in to your tenant and packages and deploys from the local workspace.

  1. Install UiPath Maestro from the VS Code Marketplace or the Open VSX Registry.

    The extension requires VS Code 1.110.0 or higher. Check your version in Code > About Visual Studio Code, or run code --version.

  2. Recharger VS Code lorsque vous y êtes invité.

  3. Sélectionnez l’icône UiPath dans la barre d’activité pour ouvrir la vue UiPath.

  4. Dans la section Se connecter , sélectionnez Se connecter.

  5. Complete the sign-in in the browser window that opens.

    If the CLI is not installed yet, accept the prompt and the extension installs it for you with npm. Sign-in uses an OAuth browser flow with a callback on localhost port 8104; if it fails, a stale process may be holding that port.

  6. Run UiPath: Select Environment from the Command Palette (Ctrl/Cmd+Shift+P) and confirm your environment. The default is Cloud.

  7. Run UiPath: Select Tenant and choose the tenant you want to build in.

The extension will now populate the Resources section with folders and Orchestrator resources for that tenant.

The extension manages its own copy of the CLI. The version it installs need not match the one you installed in Step 1. Run uip --version after signing in, and if it moved backwards, npm install -g @uipath/cli returns you to the current release.

Astuce :

Working in a remote workspace? In Windows Subsystem for Linux (WSL), Secure Shell (SSH), Codespaces, and dev container workspaces, the extension runs on the remote host, so the UiPath CLI must be installed there rather than on your local machine.

Step 4 - Authenticate to UiPath​

After installing the CLI, use the steps below to authenticate it, and select the tenant to use.

  1. Authentifiez la CLI de votre compte UiPath:

    uip login
    uip login
    

    Cette action ouvre une fenêtre de navigateur dans laquelle vous vous connectez et sélectionnez votre locataire. Une fois terminé, le terminal confirme que vous êtes connecté.

  2. Verify your login status by confirming you see "Status": "Logged in" by running:

    uip login status
    uip login status
    

You are now ready to follow the tutorials.

Cette page vous a-t-elle été utile ?

Connecter

Besoin d'aide ? Assistance

Vous souhaitez apprendre ? UiPath Academy

Vous avez des questions ? UiPath Forum

Rester à jour