Create a new project
If you plan to work on a project that does not require complex dependency management, consider creating the Go project ( ). Otherwise, create the Go modules project or enable Go modules in your current project.
Without Go modules, you need to store your source code under the GOPATH directory (a Go workspace). Also, you cannot install multiple versions of the same dependency package since the go get
command downloads the dependency package to the same directory.
Create a Go project
Select
.In the New Project page, select Go.
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. For more information about installing Go SDK, see Installing Go SDK.
(Optional) Toggle the Index entire GOPATH checkbox:
Checkbox cleared: project files and vendored packages are indexed. Packages from GOPATH are not indexed. Might improve the overall performance.
Checkbox selected: packages from GOPATH and project files are indexed.
Click Next, specify a project name and click Finish.
Installing Go SDK
Select a local copy of the Go SDK
Ensure that the provided path to the folder with Go SDK includes bin and src folders.
In the New Project dialog, select Go.
Click the Add SDK button and select Local.
In the file browser, navigate to the SDK version that is on your hard drive.
Click Open.
Download the Go SDK
In the New Project dialog, select Go.
Click the Add SDK button select Download.
From the Version list, select the SDK version.
In the Location field, specify the path for the SDK. To use a file browser, click the Browse icon .
Click OK.
Add and install dependencies
GOPATH stores your code base and all the files that are necessary for your development. Also, it includes packages that you download and install.When disabled, only project and vendored packages are indexed. It might improve the overall performance but makes it impossible to use packages from GOPATH.
If your project has external dependencies, you might want to enable entire GOPATH indexing. By default, indexing of entire GOPATH is disabled.
Enable entire GOPATH indexing
Open settings by pressing Ctrl+Alt+S and navigate to
.Select the Index entire GOPATH checkbox.
Download and install dependencies
Click an unresolved dependency in the
import
section and press Alt+Enter.Select
go get -t <package>
.