AeonLucid / POGOProtos

A central repository for all proto files of PokémonGO.
MIT License
726 stars 279 forks source link

How to compile this into CSharp in windows 10? #213

Closed IDarkCobalt closed 7 years ago

IDarkCobalt commented 8 years ago

I already installed the latest version of python.

When I tried to compile the project:

image

trisk commented 8 years ago

You need the protoc command in your %PATH% or specified with --protoc-path.

Kermel commented 8 years ago

...or you must put the fullpath to the "protoc.exe" file as part of the python command (using -p attribute) for example: "-p c:\software\protoc\bin\protoc.exe"

So full command then will be something like this: "python compile_pretty.py -p c:\somedir\protoc\protoc.exe csharp"

AeonLucid commented 7 years ago

Closing this issue.