-
Notifications
You must be signed in to change notification settings - Fork 656
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot npm install grpc-tools on arm #1497
Comments
It is true that we do not distribute ARM builds of grpc-tools. I recommend doing your code generation on a non-ARM machine and then copying the files over. |
Thanks for confirming it!
OK, I had the same idea. Closing it; there is a workaround. |
Sorry for commenting on a closed issue, but
Wouldn't we still need grpc-js anyway? |
grpc-js is all JavaScript, so it should work fine on all platforms, including ARM. |
Yea, a coworker of mine pointed that out earlier this morning. I went the "I don't really know what I'm doing" route and did this
Thanks! |
You can also just |
Oh, that's absolutely true. I think I got things messed up and thought grpc-js had grps-tools as a dependency, but it's all nice clean TypeScript. Really convenient. Appreciate your replies! |
Problem description
I cannot install
grpc-tools@1.9.0
onarmv7l
.Reproduction steps
Error:
Environment
Linux raspberrypi 4.19.118-v7l+ #1311 SMP Mon Apr 27 14:26:42 BST 2020 armv7l GNU/Linux
10.15.3
nvm
Additional context
I would like to build a gRPC capable electron app for
armhf
andarm64
. I already switched fromgrpc
to@grpc/grpc-js
as there are no pre-builds for electron for ARM. But I cannot installgrpc-tools
to generate my JS/TS API as part of the build step, as I cannot pullgrpc-tools
in. Is there a recommended way to work around this? Thank you!The text was updated successfully, but these errors were encountered: