Mark Benjamin

Results 7 comments of Mark Benjamin

Saying that, a ``` replace ( github.com/blend/go-sdk v1.1.1 => github.com/blend/go-sdk legacy-v1.1.1 ) ``` in `go.mod` seems to have been sufficient for this particular dependency; the main trouble is with `dataframe-go`...

to clarify what Steve said, adding ``` replace ( github.com/blend/go-sdk v1.1.1 => github.com/blend/go-sdk legacy-v1.1.1 ) ``` to your `go.mod` works; however there is now a new dependency error ``` go:...

I'm working in Fedora 36 with (as far as I recall) a basically vanilla `.rpm` go; a `$ go get github.com/sjwhitworth/golearn` from a Fedora 36 virtual machine should behave similarly

See the [bug report at `dataframe-go`](https://github.com/rocketlaunchr/dataframe-go/issues/64); add this to your `go.mod` ``` replace ( github.com/blend/go-sdk v1.1.1 => github.com/blend/go-sdk legacy-v1.1.1 ) ``` however, there is a new error now that ```...

Well done for spotting the cause of the error, it had been throwing warnings for a while; now that I upgraded to F41 it's a solid error. One question please,...

The `dart pub global activate flutter_distributor` seems to download ready-compiled snapshots, that aren't easily edited; I've mostly got it now though, ``` $ dart run /path/to/github/clone/flutter_distributor/packages/flutter_distributor/bin/main.dart release --name=dev --jobs=release-dev-linux-rpm ```...

alright that particular error I added a cd command to the .`spec` file that was left behind in the incomplete build, so now from ``` cp -r %{name}/* %{buildroot}%{_datadir}/%{name} ln...