-
Notifications
You must be signed in to change notification settings - Fork 11
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
Segmentation fault (core dumped) when running server.py #4
Comments
Hi, |
Hi, |
When I first tried to run python3 test.py I received the same error: "SEAL requires GNUC >= 6" #error "SEAL requires GNUC >= 6" I don't know why, but GNUC command is using the x86_64-linux-gnu-gcc files instead the simple gcc. Although in my machine, gcc is running gcc-6, x86_64-linux-gnu-gcc is running its corresponding 5th version. So, in order to solve this, on the command line, I went to /usr/bin/ and then: sudo rm x86_64-linux-gnu-gcc I did the above for the following files: |
Great, I think this is the mean reason. Thanks! But when I test
I think it is related to protobuf, but I don't know what to do. Have you ever received the same errors? |
Good catch on the gcc version @manel1874 ! Sadly this is one of these things that we can not really test with our capabilities here :) @Cestlaviez : Actually this looks like you do not have onnx installed. That goes on me as I forgot to add it to the Installation notice. Try pip install onnx and I hope that should fix your problem. I will add it to the Readme |
Hi @fritzalder , |
You do not need to generate your own GRPC sources. They already exist in the common folder. If you really want to regenerate them, read the Readme in the proto subfolder. You will need to manually edit the generated grpc files so that they use the installed onnx library instead of a library that GRPC assumes. I think I have all necessary steps in the proto folder Readme. But as I said, the default grpc files from the common folder should work just fine. |
Hi @Cestlaviez |
Hi @Cestlaviez @Ye-D |
My problem lies in the grpc. I re-generated the .proto files to fix the bug. Hope this helps you! |
Hi,
After successfully testing python3 test.py, test_mpc_server.py and test_mpc_client.py, I got an error on running server.py. What's going on?
Thanks!
The text was updated successfully, but these errors were encountered: