Can micro support on Windows #1650
Replies: 5 comments 2 replies
-
hi ... did u follow these steps |
Beta Was this translation helpful? Give feedback.
-
Maybe put more details on the commands you are running and when it is failing. I have not used Windows in forever, but we might be able to spot what u are doing wrong. Try following the steps that LambdaR pointed out and share where it fails. |
Beta Was this translation helpful? Give feedback.
-
from https://github.com/micro/micro#getting-started I guess I install it from source with
and I should get start
`C:\Users\param>go get github.com/micro/micro/v3 C:\Users\param>micro server so I guess server is running `C:\Users\param>micro env set local C:\Users\param>micro login C:\Users\param>micro new helloworld . download protoc zip packages (protoc-$VERSION-$PLATFORM.zip) and install: visit https://github.com/protocolbuffers/protobuf/releases download protobuf for micro: go get -u github.com/golang/protobuf/proto compile the proto file helloworld.proto: cd helloworld `C:\Users\param>go get -u github.com/golang/protobuf/proto C:\Users\param>go get -u github.com/golang/protobuf/protoc-gen-go C:\Users\param>go get github.com/micro/micro/v3/cmd/protoc-gen-micro after that I try to compile helloworld. But because I don't have make file run on Windows, so I run command following `C:\Users\param>cd helloworld C:\Users\param\helloworld>protoc --proto_path=. --micro_out=. --go_out=:. proto/helloworld.proto C:\Users\param\helloworld>go build -o helloworld .go C:\Users\param\helloworld>go build -o helloworld from there I don't know how to make it continue. |
Beta Was this translation helpful? Give feedback.
-
I finally found the solution from my friend suggestion to run it in docker. I'm not sure if it has a problem in running on Windows. Thank you everyone for reading my question. |
Beta Was this translation helpful? Give feedback.
-
you provided a nice sample for new guys. thank you . |
Beta Was this translation helpful? Give feedback.
-
I'm learning about micro, just begining. I installed and try to run helloworld service on Windows, but I can't. It show that "Not authorized to perform this requiest"
C:\WINDOWS\system32>micro run github.com/micro/services/helloworld
Not authorized to perform this request
can anybody help, please?
Beta Was this translation helpful? Give feedback.
All reactions