$psversiontable.p"/> $psversiontable.p">
search
HomeBackend DevelopmentGolangGo installation is successful but no simple Hello World is output

Go安装成功但没有输出简单的Hello World

php小编小新在Go语言学习过程中,有时可能会遇到安装成功但没有输出简单的Hello World的情况。这种情况可能是由于编码问题、环境配置错误或代码书写不正确等原因导致的。本文将为大家解决这一问题,提供一些常见的解决方法和技巧,以帮助大家顺利输出Hello World并顺利进行Go语言学习。

问题内容

使用 windows 11 pro,使用安装程序安装 go。 这是我的 main.go 文件:

package main

import (
    "fmt"
    "time"
)

func main() {
    fmt.println("hello world")
    time.sleep(2 * time.second)
}

以及我能想到的所有相关信息: powershell版本: ps c:\users\fares.alghazy\go\src> $psversiontable.psversion

主要次要构建修订

5 1 22621 1778

go 扩展设置.json:

{
    "explorer.confirmdelete": false,
    "terminal.integrated.scrollback": 100000,
    "editor.minimap.enabled": false,
    "[javascript]": {
        "editor.defaultformatter": "esbenp.prettier-vscode"
    },
    "workbench.editorassociations": {
        "*.db": "default",
        "*.docx": "default"
    },
    "[json]": {
        "editor.defaultformatter": "vscode.json-language-features"
    },
    "[php]": {
        "editor.defaultformatter": "sophisticode.php-formatter"
    },
    "editor.formatonsave": true,
    "prettier.tabwidth": 4,
    "[typescript]": {
        "editor.defaultformatter": "vscode.typescript-language-features"
    },
    "[dockercompose]": {
        "editor.defaultformatter": "ms-azuretools.vscode-docker"
    },
    "typescript.updateimportsonfilemove.enabled": "always",
    "javascript.updateimportsonfilemove.enabled": "always",
    "[jsonc]": {
        "editor.defaultformatter": "esbenp.prettier-vscode"
    },
    "[html]": {
        "editor.defaultformatter": "esbenp.prettier-vscode"
    },
    "[typescriptreact]": {
        "editor.defaultformatter": "vscode.typescript-language-features"
    },
    "diffeditor.ignoretrimwhitespace": false,
    "workbench.startupeditor": "none",
    "[vue]": {
        "editor.defaultformatter": "vue.volar"
    },
    "audiocues.linehasbreakpoint": "off",
    "audiocues.linehaserror": "off",
    "audiocues.linehasinlinesuggestion": "off",
    "audiocues.noinlayhints": "off",
    "audiocues.ondebugbreak": "off",
    "audiocues.volume": 0,
    "audiocues.linehasfoldedarea": "off",
    "go.gopath": "c:\\users\\myuser\\go",
    "go.goroot": "c:\\program files\\go",
    "files.autosave": "afterdelay",
    "go.alternatetools": {
    
    }
}

系统/目录信息:

ps c:\users\myuser\go\src> pwd

c:\users\myuser\go\src


ps c:\users\myuser\go\src> ls


    directory: c:\users\myuser\go\src


mode                 lastwritetime         length name
----                 -------------         ------ ----
-a----         28-jul-23  12:00 pm            122 main.go


ps c:\users\myuser\go\src> go version
go version go1.20.6 windows/amd64
ps c:\users\myuser\go\src> go env
set go111module=
set goarch=amd64
set gobin=
set gocache=c:\users\myuser\appdata\local\go-build
set goenv=c:\users\myuser\appdata\roaming\go\env
set goexe=.exe
set goexperiment=
set goflags=
set gohostarch=amd64
set gohostos=windows
set goinsecure=
set gomodcache=c:\users\myuser\go\pkg\mod
set gonoproxy=
set gonosumdb=
set goos=windows
set gopath=c:\users\myuser\go
set goprivate=
set goproxy=https://proxy.golang.org,direct
set goroot=c:\program files\go
set gosumdb=sum.golang.org
set gotmpdir=
set gotooldir=c:\program files\go\pkg\tool\windows_amd64
set govcs=
set goversion=go1.20.6
set gccgo=gccgo
set goamd64=v1
set ar=ar
set cc=gcc
set cxx=g++
set cgo_enabled=0
set gomod=nul
set gowork=
set cgo_cflags=-o2 -g
set cgo_cppflags=
set cgo_cxxflags=-o2 -g
set cgo_fflags=-o2 -g
set cgo_ldflags=-o2 -g
set pkg_config=pkg-config
set gogccflags=-m64 -fno-caret-diagnostics -qunused-arguments -wl,--no-gc-sections -fmessage-length=0 -fdebug-prefix-map=c:\users\myuser~1.alg\appdata\local\temp\go-build1704880455=/tmp/go-build -gno-record-gcc-switches

问题:

动作运行: go 运行 main.go 预期输出: > 你好世界 收到的输出: 终端停止(即使没有 time.sleep)然后什么也没有发生

尝试修复: 1-尝试使用 go build 然后运行 ​​exe,没有收到输出 2-尝试构建然后将输出重定向到文件: go 构建 main.go .\main.exe >output.txt output.txt 已创建但为空 3-检查控制台编码:活动代码页:65001

4-禁用防病毒或安全软件:我使用标准 windows 安全功能,未安装第 3 方安全软件 我什至尝试过重新安装go软件、重启电脑、重启vs code等

为什么我的代码没有显示输出?我可以做什么来修复它?

更新1: 按照@mkopriva 的指示:

go mod init my_app 生成以下 go.mod 文件:

module my_app

go 1.20

我的新目录是:

PS C:\Users\myuser\Desktop\Development\go\my_app> ls


Directory: C:\Users\myuser\Desktop\Development\go\my_app


Mode                 LastWriteTime         Length Name
----                 -------------         ------ ----
-a----         28-Jul-23   1:14 PM             27 go.mod
-a----         28-Jul-23   1:15 PM            125 main.go

go run main.go 或构建然后运行没有任何变化。仍然没有得到输出。

解决方法

Go 程序经常被防病毒软件错误地识别为恶意软件,尽管它们并非恶意软件。 Go 官方文档中甚至还有有关此主题的常见问题解答条目

Windows Defender 通常会在编译后立即删除您的可执行文件。您可以不使用 go run main.go ,而是分别执行两个步骤,首先调用 go build main.go ,然后尝试运行 main.exe 。当 Windows 在创建后立即删除可执行文件时,此操作将会失败。我曾见过编译的 DLL 在一分多钟后消失,当时我以为自己是安全的,因此请注意,可执行文件可能不会立即被删除,但可能会在编译后几秒甚至几分钟被删除。

当您调用 go run main.go 时,它将在 %APPDATA%Local 路径下的临时文件夹中构建可执行文件,该文件夹名为 go-build

您可能希望在 Windows Defender 中创建例外规则,以忽略 APPDATA 中的 go-build 文件夹。您还应该从防病毒扫描中排除 GOPATHGOBIN,您可能也会在那里构建和运行代码。

The above is the detailed content of Go installation is successful but no simple Hello World is output. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:stackoverflow. If there is any infringement, please contact admin@php.cn delete
go语言有没有缩进go语言有没有缩进Dec 01, 2022 pm 06:54 PM

go语言有缩进。在go语言中,缩进直接使用gofmt工具格式化即可(gofmt使用tab进行缩进);gofmt工具会以标准样式的缩进和垂直对齐方式对源代码进行格式化,甚至必要情况下注释也会重新格式化。

go语言为什么叫gogo语言为什么叫goNov 28, 2022 pm 06:19 PM

go语言叫go的原因:想表达这门语言的运行速度、开发速度、学习速度(develop)都像gopher一样快。gopher是一种生活在加拿大的小动物,go的吉祥物就是这个小动物,它的中文名叫做囊地鼠,它们最大的特点就是挖洞速度特别快,当然可能不止是挖洞啦。

一文详解Go中的并发【20 张动图演示】一文详解Go中的并发【20 张动图演示】Sep 08, 2022 am 10:48 AM

Go语言中各种并发模式看起来是怎样的?下面本篇文章就通过20 张动图为你演示 Go 并发,希望对大家有所帮助!

【整理分享】一些GO面试题(附答案解析)【整理分享】一些GO面试题(附答案解析)Oct 25, 2022 am 10:45 AM

本篇文章给大家整理分享一些GO面试题集锦快答,希望对大家有所帮助!

tidb是go语言么tidb是go语言么Dec 02, 2022 pm 06:24 PM

是,TiDB采用go语言编写。TiDB是一个分布式NewSQL数据库;它支持水平弹性扩展、ACID事务、标准SQL、MySQL语法和MySQL协议,具有数据强一致的高可用特性。TiDB架构中的PD储存了集群的元信息,如key在哪个TiKV节点;PD还负责集群的负载均衡以及数据分片等。PD通过内嵌etcd来支持数据分布和容错;PD采用go语言编写。

go语言是否需要编译go语言是否需要编译Dec 01, 2022 pm 07:06 PM

go语言需要编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言,也就说Go语言程序在运行之前需要通过编译器生成二进制机器码(二进制的可执行文件),随后二进制文件才能在目标机器上运行。

go语言能不能编译go语言能不能编译Dec 09, 2022 pm 06:20 PM

go语言能编译。Go语言是编译型的静态语言,是一门需要编译才能运行的编程语言。对Go语言程序进行编译的命令有两种:1、“go build”命令,可以将Go语言程序代码编译成二进制的可执行文件,但该二进制文件需要手动运行;2、“go run”命令,会在编译后直接运行Go语言程序,编译过程中会产生一个临时文件,但不会生成可执行文件。

golang map怎么删除元素golang map怎么删除元素Dec 08, 2022 pm 06:26 PM

删除map元素的两种方法:1、使用delete()函数从map中删除指定键值对,语法“delete(map, 键名)”;2、重新创建一个新的map对象,可以清空map中的所有元素,语法“var mapname map[keytype]valuetype”。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.