GOENV只能通过操作系统环境来设置。

huangapple go评论79阅读模式
英文:

GOENV can only be set using the OS environment

问题

我想设置GOENV路径,并使用以下命令go env -w GOENV=D:\go\env,但是返回了go env -w: GOENV can only be set using the OS environment,我应该如何设置GOENV自定义路径?我使用的是Windows 11操作系统。

英文:

I want to set the GOENV path and use the following command go env -w GOENV=D:\go\env, but he returns go env -w: GOENV can only be set using the OS environment how should I set the GOENV custom path?The computer environment of windows11

答案1

得分: 1

你正在使用哪个命令行解释器?是cmd.exe还是Powershell?

在cmd.exe中:

set GOENV=D:\go\env

在Powershell中:

$env:GOENV="D:\go\env"
英文:

What shell are you using ? cmd.exe or Powershell ?

In cmd.exe :

set GOENV=D:\go\env

In Powershell :

$env:GOENV="D:\go\env"

huangapple
  • 本文由 发表于 2022年4月28日 11:49:32
  • 转载请务必保留本文链接:https://go.coder-hub.com/72037821.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定