[go-nuts] Install Lastest Modules

2019-05-14 Thread Tamás Gulácsi
Where you import it, import .../excelize/v2 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. To view this discussion on t

Re: [go-nuts] Install Lastest Modules

2019-05-14 Thread Marcin Romaszewicz
go get -u github.com/360EntSecGroup-Skylar/excelize/v2 will do what you want. You then have to import " github.com/360EntSecGroup-Skylar/excelize/v2" in all your Go files. -- Marcin On Tue, May 14, 2019 at 3:37 PM Andrew wrote: > I want to install the latest version(v2.0.0) of excelize library

[go-nuts] Install Lastest Modules

2019-05-14 Thread Andrew
I want to install the latest version(v2.0.0) of excelize library using: go get -u github.com/360EntSecGroup-Skylar/excelize@latest But the go.mod file updated using the old version 1.4.1 module learn go 1.12 require ( github.com/360EntSecGroup-Skylar/excelize v1.4.1 // indirect github.c