IntelliJ IDEA 2022.2 Help

Dep

Create a project with dep integration

By default, IntelliJ IDEA creates a project with Go modules integration. You can disable this option in settings. But ensure that you keep the necessary file structure and store your project under GOPATH. For more information about storing your code under GOPATH, see How to Write Go Code (with GOPATH) at go.dev.

Firstly, you need to create a default Go project with Go modules integrations but be sure to place your project under GOPATH.

Create a project with Go integration

  1. Select File | New | New Project.

    Alternatively, click New Project in the Welcome to IntelliJ IDEA dialog.

  2. In the Name field, type a name of your project.

  3. In the Location field, specify the path where you want to store your project.

  4. If you want to initiate a git repository for the project, select the Create Git repository checkbox.

  5. In the Language list, click the Install Plugin icon (the Install Plugin button), and select Go. If you have already installed the Go plugin, select it from the Language list.

  6. If the Go plugin is not installed, in the Plugins dialog, find the Go plugin and click Install.

  7. Click OK to close the Plugins dialog.

  8. In the New Project dialog, select New Project from the list of available projects.

    Ensure that Go is selected as a project language in the Language list.

  9. In the GOROOT field, specify the location of your Go installation. Usually, the location is defined automatically.

    To change or install a new version of Go SDK, click the Add SDK… button and select Local… to choose the Go SDK version on your hard drive, or select Download… to download Go SDK from the official repository.

  10. (Optional) Select or clear the Enable vendoring support automatically checkbox.

  11. (Optional) In the Environment field, specify environment variables that you need for your project. For example, the GOPROXY environment variable. Read more about environment variables in the Environment variables section.

  12. Click Create.

    Download Go SDK

Secondly, disable Go modules integration.

Disable the Go modules integration

  1. Press Ctrl+Alt+S to open the IDE settings and select Languages & Frameworks | Go | Go Modules.

  2. Clear the Enable Go modules integration checkbox.

    Enable Go modules integration

Finally, enable dep integration.

Enable dep integration

  1. Install the dep distribution.

  2. Open settings by pressing Ctrl+Alt+S and navigate to Languages & Frameworks | Go | Dep

  3. Select the Enable dep integration checkbox.

  4. From the Dep Executable list, select a path to the dep executable. To select a path to the dep executable manually, click the Browse button ( the Browse button) and navigate to the folder with the dep executable.

  5. Click OK.

    Dep Executable

Working with dependencies

Ensure that you create your Dep project under $GOPATH/src. The GOPATH variable points to a root directory that contains bin, pkg, and src subdirectories. The project source is under src. Tools like godep and go install operate on the project source, not on the entire GOPATH. For more details about the dep project, see the Go Workspace documentation.

If you want to use any location for the project source, consider using Go modules integration.

Import dependencies

  1. Click the dependency declaration.

  2. Press Alt+Enter and select dep ensure.

    Import dependencies

Installing Go SDK

Select a local copy of the Go SDK

  1. Press Ctrl+Alt+S to open the IDE settings and select Languages & Frameworks | Go | GOROOT.

  2. Click the Add SDK button (the Add SDK button) and select Local….

  3. In the file browser, navigate to the SDK version that is on your hard drive.

  4. Click Open.

    Installing Go SDK

Download the Go SDK

  1. Press Ctrl+Alt+S to open the IDE settings and select Languages & Frameworks | Go | GOROOT.

  2. Click the Add SDK button (the Add SDK button) and select Download….

  3. From the Version list, select the SDK version.

  4. In the Location field, specify the path for the SDK. To use a file browser, click the Browse icon (the Browse icon).

  5. Click OK.

    Installing Go SDK
Last modified: 29 November 2022