-
-
Notifications
You must be signed in to change notification settings - Fork 364
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
missing source files #108
Comments
Don't rush to claim that you have found a bug. Please learn how Golang module works. There are a lot of articles you can learn from. |
I am sorry your page did not reference any install instructions,
maybe you can add that for newcomers.
Thanks
…On Sat, Jul 11, 2020 at 2:15 PM Yad Smood ***@***.***> wrote:
Closed #108 <#108>.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#108 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA2NZIZ4BB553VAT7UIDFM3R3DJARANCNFSM4OXNS6FQ>
.
|
I think that there is more to this problem
I have window 10 version 2004
go version go1.15beta1
and I have these environment set
set GOPATH=E:\p-tools\go_src
set GOBIN=E:\p-tools\go_bin
set GOROOT=C:\go
I have installed 30 other packages with no problem, this is the first one
that fails which leads me to believe it is a configuration issue of the
respository
…On Sat, Jul 11, 2020 at 5:03 PM G Shields ***@***.***> wrote:
I am sorry your page did not reference any install instructions,
maybe you can add that for newcomers.
Thanks
On Sat, Jul 11, 2020 at 2:15 PM Yad Smood ***@***.***>
wrote:
> Closed #108 <#108>.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#108 (comment)>, or
> unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AA2NZIZ4BB553VAT7UIDFM3R3DJARANCNFSM4OXNS6FQ>
> .
>
|
I just install chromedp just fine,
…On Sat, Jul 11, 2020 at 5:20 PM G Shields ***@***.***> wrote:
I think that there is more to this problem
I have window 10 version 2004
go version go1.15beta1
and I have these environment set
set GOPATH=E:\p-tools\go_src
set GOBIN=E:\p-tools\go_bin
set GOROOT=C:\go
I have installed 30 other packages with no problem, this is the first one
that fails which leads me to believe it is a configuration issue of the
respository
On Sat, Jul 11, 2020 at 5:03 PM G Shields ***@***.***> wrote:
> I am sorry your page did not reference any install instructions,
> maybe you can add that for newcomers.
>
> Thanks
>
> On Sat, Jul 11, 2020 at 2:15 PM Yad Smood ***@***.***>
> wrote:
>
>> Closed #108 <#108>.
>>
>> —
>> You are receiving this because you authored the thread.
>> Reply to this email directly, view it on GitHub
>> <#108 (comment)>, or
>> unsubscribe
>> <https://github.com/notifications/unsubscribe-auth/AA2NZIZ4BB553VAT7UIDFM3R3DJARANCNFSM4OXNS6FQ>
>> .
>>
>
|
Do you know how to use google? If you use Google to search your error message and The problem is you don't understand how Just set the same flag on windows then use
|
This is the correct answer is that go 1.15 does not have GO111MODULE=on
Go from version 1.13 has this variable on by default
golang/go#30750
Go ver 1.15 has GO111MODULE, but the value is blank
Adding it into the window environment as '=on'
Fixed the the problem
So in reality it is problem with the beta version of GO in a clean
environment!
…On Sun, Jul 12, 2020 at 12:25 AM Yad Smood ***@***.***> wrote:
Do you know how to use google? If you use Google to search your error
message cannot find package "github.com/pierrec/lz4/v3", the first couple
of results are:
pierrec/lz4#62 <pierrec/lz4#62>
and
mholt/archiver#195 <mholt/archiver#195>
The problem is you don't understand how go module works.
[image: Screen Shot 2020-07-12 at 16 02 09]
<https://user-images.githubusercontent.com/1415488/87240956-19128900-c459-11ea-87b5-aaca288f5b6a.png>
Just set the same flag on windows then use go get:
set GO111MODULE=on
go get github.com/go-rod/rod
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#108 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA2NZI5DNLWTWWQMM2AB2MTR3FQM3ANCNFSM4OXNS6FQ>
.
|
No, it's not. If you try 1.13 or 1.14, they have the same problem. You have to explicitly set |
From what I have read go from version 1.13 has set to auto
Since there is a go.mod file in the repository it should have worked
https://insujang.github.io/2020-04-04/go-modules/
[image: image.png]
…On Sun, Jul 12, 2020 at 2:28 AM Yad Smood ***@***.***> wrote:
So in reality it is problem with the beta version of GO in a clean
No, it's not. If you try 1.13 or 1.14, it has the same problem. You have
to explicitly set GO111MODULE=on.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#108 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA2NZI2YU22TZV35OINS3TLR3F62TANCNFSM4OXNS6FQ>
.
|
Now, you know your description is incorrect. What matters is the go module, not the beta version. If you have set up the go.mod properly, 1.15 beta will work fine. |
It's a very common problem for go module. If you google before you ask, we don't have to waste time on this issue. |
windows 10 version 2004
go version go1.15beta1 windows/amd64
go get -u -fix github.com/go-rod/rod
cannot find package "github.com/pierrec/lz4/v3" in any of:
C:\go\src\github.com\pierrec\lz4\v3 (from $GOROOT)
E:\p-tools\go_src\src\github.com\pierrec\lz4\v3 (from $GOPATH)
The text was updated successfully, but these errors were encountered: