We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am using Ubuntu: $ uname -a Linux dl 4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:25:58 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
When I tried to install planetplanet: $pip install -U --no-deps planetplanet
I get the following error: #include <gsl/gsl_poly.h> ^ compilation terminated. error: command 'gcc' failed with exit status 1
I have gcc already installed: $ gcc --version gcc (GCC) 4.8.5
So I fixed this issue by installing the GSL library: $ apt-get install gsl-bin libgsl0-dev
I am not sure if this is useful but others might find the same issue in case.
The text was updated successfully, but these errors were encountered:
Had the same error but this fixed it! using Python3.6.9 and Ubuntu 18.04
Thanks!
Sorry, something went wrong.
Can confirm, this was also an issue on Arch Linux. Fixed it by running pacman -S gsl
pacman -S gsl
No branches or pull requests
I am using Ubuntu:
$ uname -a
Linux dl 4.13.0-36-generic #40~16.04.1-Ubuntu SMP Fri Feb 16 23:25:58 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
When I tried to install planetplanet:
$pip install -U --no-deps planetplanet
I get the following error:
#include <gsl/gsl_poly.h>
^
compilation terminated.
error: command 'gcc' failed with exit status 1
I have gcc already installed:
$ gcc --version
gcc (GCC) 4.8.5
So I fixed this issue by installing the GSL library:
$ apt-get install gsl-bin libgsl0-dev
I am not sure if this is useful but others might find the same issue in case.
The text was updated successfully, but these errors were encountered: