英文:
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"
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论