-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Package import with go get gonum.org/v1/plot/...
is broken — 404 returned.
#397
Comments
I just tried this here in a clean GOPATH and it works (it complains with 404's and probably shouldn't, @btracey), but it still downloads and builds (you can see that it downloads since otherwise it wouldn't pull the dependencies in your pasted output). Your paste does miss the bitbucket.org/zombiezen/gopdf dep, but that's because you don't have hg installed. Can you try this again after installing mercurial? |
Oh no, how embarrassing:confounded: Cleaned up Both
I've done some testing with a fresh Ubuntu 16.04 VM. $ dep init -v
Getting direct dependencies...
Checked 1 directories for packages.
Found 1 direct dependencies.
Root project is "github.com/denisbrodbeck/entro"
1 transitively valid internal packages
1 external packages imported from 1 projects
(0) ✓ select (root)
(1) ? attempt gonum.org/v1/plot with 1 pkgs; 4 versions to try
(1) try gonum.org/v1/plot@master When $ dep init -v
Getting direct dependencies...
Checked 4 directories for packages.
Found 1 direct dependencies.
Root project is "github.com/denisbrodbeck/entro"
3 transitively valid internal packages
1 external packages imported from 1 projects
(0) ✓ select (root)
(1) ? attempt gonum.org/v1/plot with 1 pkgs; 4 versions to try
(1) try gonum.org/v1/plot@master
(1) ✓ select gonum.org/v1/plot@master w/8 pkgs
(2) ? attempt golang.org/x/image with 2 pkgs; 1 versions to try
(2) try golang.org/x/image@master
(2) ✓ select golang.org/x/image@master w/3 pkgs
(3) ? attempt github.com/golang/freetype with 2 pkgs; 3 versions to try
(3) try github.com/golang/freetype@master
(3) ✓ select github.com/golang/freetype@master w/3 pkgs
(4) ? revisit golang.org/x/image to add 1 pkgs
(4) ✓ include 2 more pkgs from golang.org/x/image@master
(4) ? attempt bitbucket.org/zombiezen/gopdf with 1 pkgs; 6 versions to try
(5) try bitbucket.org/zombiezen/gopdf@default
(5) ✓ select bitbucket.org/zombiezen/gopdf@default w/1 pkgs
(5) ? attempt github.com/llgcode/draw2d with 2 pkgs; 5 versions to try
(6) try github.com/llgcode/draw2d@master
(6) ✓ select github.com/llgcode/draw2d@master w/3 pkgs
(6) ? revisit golang.org/x/image to add 2 pkgs
(7) ✓ include 2 more pkgs from golang.org/x/image@master
(6) ? attempt github.com/ajstarks/svgo with 1 pkgs; 9 versions to try
(8) try github.com/ajstarks/svgo@master
(8) ✓ select github.com/ajstarks/svgo@master w/1 pkgs
(7) ? revisit github.com/golang/freetype to add 1 pkgs
(9) ✓ include 1 more pkgs from github.com/golang/freetype@master
✓ found solution with 22 packages from 6 projects
Solver wall times by segment:
b-source-exists: 16.637893064s
b-list-versions: 9.386182938s
b-list-pkgs: 541.701378ms
b-gmal: 374.514969ms
b-deduce-proj-root: 275.168535ms
select-atom: 4.245835ms
new-atom: 2.256841ms
satisfy: 2.161001ms
select-root: 180.629µs
add-atom: 22.268µs
other: 21.778µs
TOTAL: 27.224349236s
Using master as constraint for direct dep gonum.org/v1/plot
Locking in master (def97c8) for direct dep gonum.org/v1/plot
Locking in master (f7e31b4) for transitive dep golang.org/x/image
Locking in master (e2365df) for transitive dep github.com/golang/freetype
Locking in default (1c63dc6) for transitive dep bitbucket.org/zombiezen/gopdf
Locking in master (dcbfbe5) for transitive dep github.com/llgcode/draw2d
Locking in master (ac87889) for transitive dep github.com/ajstarks/svgo
(1/6) Wrote github.com/golang/freetype@master
(2/6) Wrote github.com/ajstarks/svgo@master
(3/6) Wrote github.com/llgcode/draw2d@master
(4/6) Wrote gonum.org/v1/plot@master
(5/6) Wrote golang.org/x/image@master
(6/6) Wrote bitbucket.org/zombiezen/gopdf@default I guess, I'll open an issue at dep. @kortschak Thank you for your quick reply and sorry for any inconvenience. It would be great, if your project README would include some hint, that the user needs |
With any luck mercurial will not be required in the near future (#389), but in the Go ecosystem, it pays to have mercurial installed since there is a history there (Go was previously distributed via mercurial). |
Could you open an issue on the website with what the behavior should be? The page doesn't exist, so I would expect a 404 |
Hmm, IMO it's just a minor issue. I've looked up the Given the output:
We can see, that One could get rid of the Maybe for all top level import paths: hugo new v1/gonum.md
hugo new v1/plot.md
hugo new v1/netlib.md
hugo new v1/hdf5.md and for each +++
title = "gonum"
date = "2017-10-26T00:00:00"
selected = false
highlight = false
math = false
+++ |
Others return a refresh to godoc, e.g.
|
I am unable to import this project with
go get
ordep
, which never failed me before.Call to
Parsing meta tags from https://gonum.org/v1/plot?go-get=1 (status code 404)
fails.The page https://www.gonum.org/v1/plot?go-get=1 returns
Page not found
.Output:
The text was updated successfully, but these errors were encountered: