dsvtnz6350 2013-11-27 16:18
浏览 152
已采纳

无法构建Go应用程序:…:找不到导入:“ code.google.com/p/go.net/html

I have just attempted to launch an application (https://github.com/mjibson/goread) on google app engine.

I have followed all the steps but when I get to the point where I should launch it with dev_appserver.py app.yaml I am getting the following error :

$ dev_appserver.py app.yaml                                                                                                   
INFO     2013-11-27 17:14:13,250 sdk_update_checker.py:245] Checking for updates to the SDK.
INFO     2013-11-27 17:14:13,446 sdk_update_checker.py:273] The SDK is up to date.
WARNING  2013-11-27 17:14:13,455 api_server.py:331] Could not initialize images API; you are likely missing the Python "PIL" module.
INFO     2013-11-27 17:14:13,460 api_server.py:138] Starting API server at: http://localhost:42131
INFO     2013-11-27 17:14:13,532 dispatcher.py:171] Starting module "default" running at: http://localhost:8080
INFO     2013-11-27 17:14:13,535 admin_server.py:117] Starting admin server at: http://localhost:8000
ERROR    2013-11-27 17:14:16,293 go_runtime.py:166] Failed to build Go application: 
2013/11/27 17:14:16 go-app-builder: build timing: 10×6g (2.35416362s total), 18×gopack (104.629743ms total), 0×6l (0 total)
2013/11/27 17:14:16 go-app-builder: failed running 6g: signal: killed


(Executed command: /home/ubuntu/bin/go_appengine/goroot/bin/go-app-builder -app_base /home/ubuntu/mygo/src/github.com/mjibson/goread -arch 6 -binary_name _go_app -dynamic -extra_import$
 appengine_internal/init -goroot /home/ubuntu/bin/go_appengine/goroot -nobuild_files ^^$ -unsafe -work_dir /tmp/tmpJex0GQappengine-go-bin -gcflags -I,/home/ubuntu/bin/go_appengine/goroo
t/pkg/linux_amd64_appengine -ldflags -L,/home/ubuntu/bin/go_appengine/goroot/pkg/linux_amd64_appengine -gopath /home/ubuntu/mygo sanitizer/sanitize.go rdf/rdf.go rss/rss.go types.go fun
cs.go utils.go settings.go atom/atom.go sanitizer/strip.go main.go admin.go charge.go user.go autodiscover.go sanitizer/snip.go tasks.go)
^CINFO     2013-11-27 17:14:18,348 shutdown.py:44] Shutting down.
INFO     2013-11-27 17:14:18,375 api_server.py:524] Applying all pending transactions and saving the datastore
INFO     2013-11-27 17:14:18,375 api_server.py:527] Saving search indexes

With sudo only the error part change :

ERROR 2013-11-27 15:04:50,576 go_runtime.py:166] Failed to build Go application: /home/ubuntu/mygo/src/github.com/mjibson/goread/sanitizer/sanitize.go:21: can't find import: "code.google.com/p/go.net/html"

The lines causing problems :

package sanitizer

 17 package sanitizer
 18 
 19 import (
 20         "bytes"
 21         "code.google.com/p/go.net/html"
 22         "io"
 23         "net/url"
 24         "strings"
 25 )

This is my go environment :

$ goapp env
GOARCH="amd64"
GOBIN=""
GOCHAR="6"
GOEXE=""
GOHOSTARCH="amd64"
GOHOSTOS="linux"
GOOS="linux"
GOPATH="/home/ubuntu/mygo"
GORACE=""
GOROOT="/home/ubuntu/bin/go_appengine/goroot"
GOTOOLDIR="/home/ubuntu/bin/go_appengine/goroot/pkg/tool/linux_amd64"
CC="gcc"
GOGCCFLAGS="-g -O2 -fPIC -m64 -pthread"
CGO_ENABLED="1"

$ ll ~/bin/
Nov 27 14:34 appcfg.py -> go_appengine/appcfg.py*
Nov 27 14:34 dev_appserver.py -> go_appengine/dev_appserver.py*
Nov 18 01:36 go_appengine/
Nov 27 14:35 goapp -> go_appengine/goapp*

/home/ubuntu/mygo/pkg/
└── linux_amd64_appengine
    └── code.google.com
        └── p
            └── go.net
                ├── html
                │   └── atom.a
                └── html.a
/home/ubuntu/mygo/src/
├── code.google.com
│   └── p
│       ├── go-charset
│       │   ├── charset
│       │   ├── cmd
│       │   ├── data
│       │   ├── datafiles
│       │   └── lib
│       └── go.net
│           ├── dict
│           ├── html
│           ├── idna
│           ├── ipv4
│           ├── ipv6
│           ├── netutil
│           ├── proxy
│           ├── publicsuffix
│           ├── spdy
│           └── websocket
└── github.com
    ├── gorilla
    │   ├── context
    │   └── mux
    ├── MiniProfiler
    │   └── go
    │       ├── example
    │       ├── miniprofiler
    │       ├── miniprofiler_gae
    │       ├── miniprofiler_revel
    │       ├── redis
    │       ├── sql
    │       └── ui
    └── mjibson
        ├── appstats
        │   └── static
        ├── goon
        └── goread
            ├── atom
            ├── rdf
            ├── rss
            ├── sanitizer
            ├── static
            └── templates

App engine version : linux_amd64-1.8.8

EDIT

Now I am getting 
ERROR    2013-11-28 02:11:38,201 go_runtime.py:166] Failed to build Go application: /home/ubuntu/mygo/src/github.com/MiniProfiler/go/miniprofiler/static.go:19263: out of memory

ALthough I have like 480M of free RAM on my machine while running this command.

EDIT

I have tested and seems that there is not enough RAM on the machine that I wanted to run it on (free tier amazon instance) because it runs smoothly on my local machine with the following htop summary

 VIRT   RES   SHR S CPU% MEM%   TIME+  Command
1492M 88588  5804 S  0.0  1.5  0:14.72 python /home/XXXX/bin/dev_appserver.py app.yaml
  • 写回答

1条回答 默认 最新

  • dpjw67160 2013-12-07 00:39
    关注

    I have tested and seems that there is not enough RAM on the machine that I wanted to run it on (free tier amazon instance) because it runs smoothly on my local machine with 6 GB of RAM.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?