ethereum / pyethapp

MIT License
1.28k stars 605 forks source link

fatal error: openssl/aes.h: No such file or directory #195

Open ankitchiplunkar opened 7 years ago

ankitchiplunkar commented 7 years ago

Thanks for taking your time to create an issue report! This is invaluable to the project. Below there are some basic sections, we ask you to fill in.

You may remove the explanatory block above from your issue report before submitting. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Checklist

System/environment

Expected behaviour

Upon following the installation instructions the pyethapp should install without hassle.

Observed behaviour

I get the error

fatal error: openssl/aes.h: No such file or directory

Steps to reproduce

I was installing pyethapp on a google cloud virtual machine instance. I used anaconda to install python. the issue can be resolved by installing: http://ask.xmodulo.com/fix-fatal-error-openssl.html

5chdn commented 7 years ago

I had the same problem. Install libssl-dev.

Should be added to the Getting started wiki :)

LiyanJin commented 7 years ago

I had met the same error. You have to install OpenSSL development package, which is available in standard repositories of all modern Linux distributions. The below code works for me. $ sudo apt-get install libssl-dev BTW, the libel-dev should be appended into the requirement.txt.

koreymacdougall commented 7 years ago

Same issue on Fedora 25. The following worked for me:

sudo dnf install openssl-devel