英文:
bee is not executable
问题
使用ubuntu15.go获取github.com/beego/bee
root@hao:/var/www/go/bin# ls
bee
root@hao:/var/www/go/bin# bee
未找到 'bee' 命令。(未找到Bee命令)
配置文件:
export GOPATH=/var/www/go
export GOROOT=/usr/local/go
export PATH=$GOROOT/bin:$PATH
英文:
Using ubuntu15.go get github.com/beego/bee
root@hao:/var/www/go/bin# ls
bee
root@hao:/var/www/go/bin# bee
未找到 'bee' 命令.(Bee command not found)
profile:
export GOPATH=/var/www/go
export GOROOT=/usr/local/go
export PATH=$GOROOT/bin:$PATH
答案1
得分: 0
首先,请检查你的二进制文件是否可执行(运行 ls -l
),并检查你的用户权限中是否包含了 "x"(如果不确定,只需运行 chmod +x bee
)。
其次,在Unix系统中执行二进制文件,你应该输入 ./bee
。
英文:
first check that your binary is executable (run ls -l) and check that "x" is part of the permission of your user (if you're not sure, just run
chmod +x bee)
Second, to execute a binary in unix you should type ./bee
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论