ParthDesai / freetype-go

Automatically exported from code.google.com/p/freetype-go
Other
0 stars 0 forks source link

Install error in my ubuntu 11.04 #7

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
cm@ubuntu:~/go/src/pkg/github.com/chsc/gogl$ sudo /home/cm/go/bin/go get 
code.google.com/p/freetype-go/freetype
package code.google.com/p/freetype-go/freetype
    imports fmt: unrecognized import path "fmt"
package code.google.com/p/freetype-go/freetype
    imports image: unrecognized import path "image"
package code.google.com/p/freetype-go/freetype
    imports image/color: unrecognized import path "image/color"
package code.google.com/p/freetype-go/freetype
    imports image/draw: unrecognized import path "image/draw"
package code.google.com/p/freetype-go/freetype
    imports math: unrecognized import path "math"
package code.google.com/p/freetype-go/freetype
    imports runtime: unrecognized import path "runtime"
package code.google.com/p/freetype-go/freetype
    imports strconv: unrecognized import path "strconv"
package code.google.com/p/freetype-go/freetype
    imports errors: unrecognized import path "errors"

Original issue reported on code.google.com by xiao.ao....@gmail.com on 14 Oct 2012 at 10:34

GoogleCodeExporter commented 9 years ago
This is not a bug with freetype-go. fmt and the others are standard library 
packages. Your configuration is somehow incorrect.

Using sudo is probably not the right thing to do. For example, see 
https://groups.google.com/d/msg/golang-nuts/FjBlKsBZ92M/wfcdHxzGpo4J

If that still doesn't help, I would suggest asking the golang-nuts mailing list 
for help on what is going wrong. When you do, it would help to add what the 
output of "env | grep ^GO" is on your system.

Original comment by nigel...@golang.org on 14 Oct 2012 at 12:04