Python interface for GNU Scientific Library
Questions tagged [pygsl]
13 questions
22
votes
4 answers
Integrate stiff ODEs with Python
I'm looking for a good library that will integrate stiff ODEs in Python. The issue is, scipy's odeint gives me good solutions sometimes, but the slightest change in the initial conditions causes it to fall down and give up. The same problem is…

Chinmay Kanchi
- 62,729
- 22
- 87
- 114
1
vote
0 answers
pygsl build issue with swig wrapping
I am trying to install pygsl on my machine, on top of gsl 1.14 with Python2.7. I am well aware that these are all deprecated, but I need to ensure backwards compatibility of a new piece of code.
When I run
python setup.py build
I get the following…

John
- 465
- 1
- 6
- 13
1
vote
0 answers
Installing pygsl module [Python 2.7, anaconda]
I'm having some troubles installing pygsl on python 2.7 with anaconda.
It keeps me printing the same error: "check dependencies". The modules name that appeared was the one that I'd try to install and the IP address. I already uninstalled the IP…

ze taxista
- 11
- 3
1
vote
1 answer
error 'cc' exit status 1 when install pygsl in osx
I already have the gsl libraries and when I'm trying to install pygsl in my mac (OS X 10.10.3), I got
(I'm posting only the last lines)
150 warnings and 10 errors generated.
error: Command "cc -fno-strict-aliasing -fno-common -dynamic -arch x86_64…

Adiv Gonzalez
- 21
- 2
1
vote
1 answer
pygsl in debian
Is it possible to install pygsl in Debian? I am using the package and someone with Debian is not sure how to install it without ruining his packaging (since it's not in apt-get.)

Neil G
- 32,138
- 39
- 156
- 257
1
vote
1 answer
gsl, pygsl, lmsder, memory leak, inconsistent output
I am using the multifit_nlin module from pygsl for nonlinear least squares fitting. pygsl is a python binding of the c numerical library gsl. The problem that I am experiencing does not seem to be related to pygsl or gsl, but it appears in this…

tachyon
- 11
- 2
1
vote
2 answers
How to install PyGSL? (Windows 7, 64 bit, Python 2.7, GSL 1.15)
I'm trying to install PyGSL on my computer (64 bit Windows 7), with Python 2.7 and GSL 1.15 installed. I'm pretty much stuck and I would love for some extra help. GSL installed fine, but its the wrapper that's the problem. For some reason I can't…

Bkat
- 61
- 6
0
votes
1 answer
using Pygsl with GCC 4.0 in Python
I am trying to install pygsl using latest version of GCC, i.e.:
$ gcc --version
i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5659)
I get the error:
$ sudo python setup.py build
numpy
Building testing ufuncs!
running build
running…
user248237
0
votes
0 answers
Version conflict: pygsl and gsl
Trying to use pygsl library I have got this error:
Warning: This pygsl module was compiled for GSL version 1.16 but it
is used with version 1.15!
gsl is installed in version 1.16. The version of pygsl is 0.9.5 Compiling from scratch, I have first…

freude
- 3,632
- 3
- 32
- 51
0
votes
1 answer
Where is gsl_cdf_beta_Pinv() in PyGSL?
I'm trying to use the distribution functions in a Python program (the random functions I've got figured out; I'm looking specifically for gsl_cdf_beta_Pinv()) and I can't find it. Can someone tell me how I can use these or a fast alternative in a…

Mark Ch.
- 1
0
votes
2 answers
Converting GSL ODE solver to Python
I solve a set of couples ODEs which I solve using the GSL ODE solver similar to this example. Currently this is automates by writing a file in python e.g
text = """
#include
#include
...
"""
Then replacing strings in…

Greg
- 11,654
- 3
- 44
- 50
-1
votes
0 answers
Error installing pyGSL with pip. ModuleNotFoundError: No module named 'gsl_site
so I'm unable to install pyGSL on windows 10. I got the error "ModuleNotFoundError: No module named 'gsl_site'". I don't know how to make it work.
Commande:
py -m pip install pygsl
Result:
Collecting pygsl
Downloading pygsl-2.3.3.tar.gz (1.1 MB)
…

Alexandre Morissette
- 11
- 5
-2
votes
2 answers
error: "gcc ... " failed with exit status 1 when I install pygsl on Ubuntu 12.04
When I was running "python setup.py build", the errors were below, and the gsl version is gsl_1.16 pygsl version is pygsl-2.3.0
testing/src/sf/sf__data.c: At top level:
testing/src/sf/sf__data.c:3010:53: error: ‘gsl_sf_mathieu_a_e’ undeclared here…

Zhao
- 1