You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
julia> include("generate_julia.jl")
ERROR: LoadError: Could not find following imports: ["mylibrary/numeric.proto"] within ["/Users/wilfrid/Documents/Projects/proto-buffet/mylibrary/", "/Users/wilfrid/.julia/packages/ProtoBuf/uNPdY/src/"]
It works fine if I simply specify the import as
import "foo.proto";
But then the gRPC fails to build the Python code. Am I missing something here?
The text was updated successfully, but these errors were encountered:
I have several
.proto
under the following directory structureThe
bar.proto
file importsfoo.proto
usingimport "mylibrary/foo.proto";
And this works fine when using gRPC to build Python code. However, when using ProtoBuf.jl as follows, I get a
LoadError
It works fine if I simply specify the import as
import "foo.proto";
But then the gRPC fails to build the Python code. Am I missing something here?
The text was updated successfully, but these errors were encountered: