SourceForge logo
SourceForge logo
Menu

matplotlib-devel — matplotlib developers

You can subscribe to this list here.

2003 Jan
Feb
Mar
Apr
May
Jun
Jul
Aug
Sep
Oct
(1)
Nov
(33)
Dec
(20)
2004 Jan
(7)
Feb
(44)
Mar
(51)
Apr
(43)
May
(43)
Jun
(36)
Jul
(61)
Aug
(44)
Sep
(25)
Oct
(82)
Nov
(97)
Dec
(47)
2005 Jan
(77)
Feb
(143)
Mar
(42)
Apr
(31)
May
(93)
Jun
(93)
Jul
(35)
Aug
(78)
Sep
(56)
Oct
(44)
Nov
(72)
Dec
(75)
2006 Jan
(116)
Feb
(99)
Mar
(181)
Apr
(171)
May
(112)
Jun
(86)
Jul
(91)
Aug
(111)
Sep
(77)
Oct
(72)
Nov
(57)
Dec
(51)
2007 Jan
(64)
Feb
(116)
Mar
(70)
Apr
(74)
May
(53)
Jun
(40)
Jul
(519)
Aug
(151)
Sep
(132)
Oct
(74)
Nov
(282)
Dec
(190)
2008 Jan
(141)
Feb
(67)
Mar
(69)
Apr
(96)
May
(227)
Jun
(404)
Jul
(399)
Aug
(96)
Sep
(120)
Oct
(205)
Nov
(126)
Dec
(261)
2009 Jan
(136)
Feb
(136)
Mar
(119)
Apr
(124)
May
(155)
Jun
(98)
Jul
(136)
Aug
(292)
Sep
(174)
Oct
(126)
Nov
(126)
Dec
(79)
2010 Jan
(109)
Feb
(83)
Mar
(139)
Apr
(91)
May
(79)
Jun
(164)
Jul
(184)
Aug
(146)
Sep
(163)
Oct
(128)
Nov
(70)
Dec
(73)
2011 Jan
(235)
Feb
(165)
Mar
(147)
Apr
(86)
May
(74)
Jun
(118)
Jul
(65)
Aug
(75)
Sep
(162)
Oct
(94)
Nov
(48)
Dec
(44)
2012 Jan
(49)
Feb
(40)
Mar
(88)
Apr
(35)
May
(52)
Jun
(69)
Jul
(90)
Aug
(123)
Sep
(112)
Oct
(120)
Nov
(105)
Dec
(116)
2013 Jan
(76)
Feb
(26)
Mar
(78)
Apr
(43)
May
(61)
Jun
(53)
Jul
(147)
Aug
(85)
Sep
(83)
Oct
(122)
Nov
(18)
Dec
(27)
2014 Jan
(58)
Feb
(25)
Mar
(49)
Apr
(17)
May
(29)
Jun
(39)
Jul
(53)
Aug
(52)
Sep
(35)
Oct
(47)
Nov
(110)
Dec
(27)
2015 Jan
(50)
Feb
(93)
Mar
(96)
Apr
(30)
May
(55)
Jun
(83)
Jul
(44)
Aug
(8)
Sep
(5)
Oct
Nov
(1)
Dec
(1)
2016 Jan
Feb
Mar
(1)
Apr
May
Jun
(2)
Jul
Aug
(3)
Sep
(1)
Oct
(3)
Nov
Dec
2017 Jan
Feb
(5)
Mar
Apr
May
Jun
Jul
(3)
Aug
Sep
(7)
Oct
Nov
Dec
2018 Jan
Feb
Mar
Apr
May
Jun
Jul
(2)
Aug
Sep
Oct
Nov
Dec
S M T W T F S




1
(1)
2
(4)
3
(1)
4
(1)
5
(8)
6
(3)
7
(6)
8
(1)
9
(2)
10
(3)
11
12
(9)
13
14
(11)
15
16
17
18
19
(11)
20
(6)
21
22
23
(7)
24
(1)
25
26
27
28
29
30
31

Showing 11 results of 11

From: Andrew S. <str...@as...> - 2005年12月19日 22:19:49
Referring to this:
>/ #include <math.h>
/32a34,37
>/ extern "C" {
/>/ int isnan(double);
/>/ }
/Jouni K Seppanen wrote:
>I suppose that would work, but then you will take a slight performance
>hit when calling isnan. It's probably not too bad; depends on how
>often it gets called.
> 
>
The code that makes use of isnan is not called enough to be worried 
about a minor speed hit.
>Apparently, the upshot is that isnan is a C99 feature and C++ does not
>incorporate C99.
>
So, does that mean the above should work on most C++ compilers? (Do 
they implement C99 mode when in extern "C" mode?) If so, I'm all for 
that approach as abandoning the isnan64 macro I borrowed from numarray. 
I'd rather take the minor speed hit than have all that intricate C 
coding currently in the MPL_isnan.h file.
From: Jouni K S. <jk...@ik...> - 2005年12月19日 20:19:55
Tom Loredo <lo...@as...> writes:
> http://www.ssl.berkeley.edu/pipermail/boinc_dev/2004-October/000529.html
>
> It involves including math.h and defining a prototype for isnan
> explicitly.
I suppose that would work, but then you will take a slight performance
hit when calling isnan. It's probably not too bad; depends on how
often it gets called.
Apple's cmath include file (my version of it, anyway, in
/usr/include/gcc/darwin/3.3/c++/) first defines a template function
that expands the macro, then undefines the macro and makes the
function available in the standard namespace (I've omitted a lot of
stuff here):
 namespace __gnu_cxx
 {
 template<typename _Tp>
 int 
 __capture_isnan(_Tp __f) { return isnan(__f); }
 }
 #undef isnan
 namespace __gnu_cxx
 {
 template<typename _Tp>
 int 
 isnan(_Tp __f) { return __capture_isnan(__f); }
 }
 namespace std
 {
 using __gnu_cxx::isnan;
 } 
So this ensures that when you call std::isnan, it is expanded at
compile-time to a call to __capture_isnan, which in turn is expanded
to the original isnan macro.
It also probably means that including math.h before cmath will have no
effect, since cmath will #undef the isnan macro. Including math.h
after cmath will also have no effect, since it is guarded with #ifndef
__MATH_H__.
The solution at the URL you mentioned adds a prototype for the isnan
function, which is included in the math library. I think it only
handles doubles, not floats or long doubles (and I have absolutely no
idea whether casting a float NaN to double works), and a function call
causes a minor performance hit. Other than that, I suppose that's
fine.
Somehow your cmath is failing to define isnan. At least in my version,
the definitions in __gnu_cxx (but not the #undef!) are conditioned on
 #if _GLIBCPP_USE_C99
Googling with that macro and isnan shows that a lot of other people
have been having similar problems. Another attempt at a solution is at
http://tolstoy.newcastle.edu.au/~rking/R/devel/05/01/1861.html
Another possibly relevant page is
http://lists.apple.com/archives/Xcode-users/2005/Feb/msg00238.html
Apparently, the upshot is that isnan is a C99 feature and C++ does not
incorporate C99. Perhaps the feature has been added anyway in some
version of gcc 3.3 between yours and mine.
-- 
Jouni
From: Jouni K S. <jk...@ik...> - 2005年12月19日 19:48:54
Tom Loredo <lo...@as...> writes:
> I've verified that the new "using std::isnan;" line is in _transforms.cpp
> and is copied to _na_transforms.cpp; it just doesn't seem to satisfy
> the compiler [gcc 3.3 20030304 (Apple Computer, Inc. build 1671) on 10.3.9].
> I'm not a c++ programmer, and I'm stumped as to what further to try.
> Jouni, did this indeed solve your build problems completely? Anyone
> have any other suggestions?
Yes, this solved my build problems, and the resulting library seems to
work. I also tried building with gcc 3.3 (gcc version 3.3 20030304
(Apple Computer, Inc. build 1809)).
Just to be sure, did you delete the "build" directory before trying
again? There could have been something left over that is causing the
error.
-- 
Jouni
From: Andrew S. <str...@as...> - 2005年12月19日 19:44:16
Attachments: isnan2.patch MPL_isnan.h
OK, it seems trying to pick up "isnan" from the C/C++ stdlib is riddled
with difficulties, at least on Mac OS X.
Following numarray's lead, I've implemented our own test "MPL_isnan64".
This involved the addition of a new header file in src/ and the patch
I'm including. Also included in the patch (and also checked into CVS)
is the unit test which shows why this whole change is necessary.
This all works for me on Mac OS X 10.4 and Debian sarge AMD64. Tom,
maybe you could try it again on Mac OS X 10.3?
Cheers!
Andrew
Tom Loredo wrote:
>Andrew,
>
>Thanks for the suggestions, which proved helpful---transforms now
>builds; the rest of the build is proceeding and my fingers are
>crossed. Here's what I found/did.
>
>Including math.h did not help. Poking around with man and in /usr/include
>revealed that isnan is defined as a macro, not a function; math.h includes 
>/usr/include/architecture/ppc/math.h and the definition is in there. I
>did some googling and found one other case of this causing a problem;
>a workaround is provided here:
>
>http://www.ssl.berkeley.edu/pipermail/boinc_dev/2004-October/000529.html
>
>It involves including math.h and defining a prototype for isnan
>explicitly. I tried this and the build failed, but with a slightly
>different error:
>
>gcc: src/_na_transforms.cpp
>src/_na_transforms.cpp: In member function `Py::Object 
> Bbox::update_numerix(const Py::Tuple&)':
>src/_na_transforms.cpp:452: error: `isnan' not declared
>src/_na_transforms.cpp: In member function `Py::Object 
> Bbox::update_numerix(const Py::Tuple&)':
>src/_na_transforms.cpp:452: error: `isnan' not declared
>
>At this point, I commented out the "using..." line that was just
>added (reasoning that isnan is now in the file's namespace), and
>the build succeeded.
>
>I don't know the build process well enough to know if this can be
>easily automated in a cross-platform manner, or if there is a 
>better solution.
>
>As I write the numarray and scipy builds of _transforms.cpp have
>both succeeded. Hopefully that's the only stumbling block.
>
>-Tom
>
>
>
>-------------------------------------------------
>This mail sent through IMP: http://horde.org/imp/
>
>
>-------------------------------------------------------
>This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
>for problems? Stop! Download the new AJAX search engine that makes
>searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
>http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
>_______________________________________________
>Matplotlib-devel mailing list
>Mat...@li...
>https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
> 
>
From: Tom L. <lo...@as...> - 2005年12月19日 18:29:12
Andrew,
Thanks for the suggestions, which proved helpful---transforms now
builds; the rest of the build is proceeding and my fingers are
crossed. Here's what I found/did.
Including math.h did not help. Poking around with man and in /usr/include
revealed that isnan is defined as a macro, not a function; math.h includes 
/usr/include/architecture/ppc/math.h and the definition is in there. I
did some googling and found one other case of this causing a problem;
a workaround is provided here:
http://www.ssl.berkeley.edu/pipermail/boinc_dev/2004-October/000529.html
It involves including math.h and defining a prototype for isnan
explicitly. I tried this and the build failed, but with a slightly
different error:
gcc: src/_na_transforms.cpp
src/_na_transforms.cpp: In member function `Py::Object 
 Bbox::update_numerix(const Py::Tuple&)':
src/_na_transforms.cpp:452: error: `isnan' not declared
src/_na_transforms.cpp: In member function `Py::Object 
 Bbox::update_numerix(const Py::Tuple&)':
src/_na_transforms.cpp:452: error: `isnan' not declared
At this point, I commented out the "using..." line that was just
added (reasoning that isnan is now in the file's namespace), and
the build succeeded.
I don't know the build process well enough to know if this can be
easily automated in a cross-platform manner, or if there is a 
better solution.
As I write the numarray and scipy builds of _transforms.cpp have
both succeeded. Hopefully that's the only stumbling block.
-Tom
-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
From: Andrew S. <str...@as...> - 2005年12月19日 17:51:38
Hmm... I've tested with gcc 3.3 on linux, so I'm not sure why it's breaking.
First, check if adding "#include <math.h>" will help.
Some other ideas:
 * Do "man isnan" from the command line and see if it specifies another
header file.
 * Search inside /usr/include for isnan and see what comes up.
Good luck,
Andrew
Tom Loredo wrote:
>Hi folks,
>
>Thanks for the quick help. I do also have numarray installed, so
>I don't think the NUMARRAY setting is the problem.
>
>Jouni, thanks for the attempted fix, but it continues to fail
>for me, at the same place:
>
>gcc: src/_na_transforms.cpp
>src/_na_transforms.cpp: In member function `Py::Object 
> Bbox::update_numerix(const Py::Tuple&)':
>src/_na_transforms.cpp:447: error: `isnan' not declared
>src/_na_transforms.cpp:494: error: `isnan' undeclared (first use this function)
>src/_na_transforms.cpp:494: error: (Each undeclared identifier is reported only 
> once for each function it appears in.)
>src/_na_transforms.cpp: In member function `Py::Object 
> Bbox::update_numerix(const Py::Tuple&)':
>src/_na_transforms.cpp:447: error: `isnan' not declared
>src/_na_transforms.cpp:494: error: `isnan' undeclared (first use this function)
>src/_na_transforms.cpp:494: error: (Each undeclared identifier is reported only 
> once for each function it appears in.)
>error: Command "gcc -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic 
>-DNDEBUG -g -O3 -Wall -Wstrict-prototypes -Isrc -I. -I/usr/local/include -I/usr/include -I/sw/include -I. -I/Library/
>Frameworks/Python.framework/Versions/2.4/include/python2.4 -c src/_na_transforms.cpp -o build/temp.darwin-7.9.0-
>Power_Macintosh-2.4/src/_na_transforms.o -DNUMARRAY=1" failed with exit status 1
>
>I've verified that the new "using std::isnan;" line is in _transforms.cpp
>and is copied to _na_transforms.cpp; it just doesn't seem to satisfy
>the compiler [gcc 3.3 20030304 (Apple Computer, Inc. build 1671) on 10.3.9].
>I'm not a c++ programmer, and I'm stumped as to what further to try.
>Jouni, did this indeed solve your build problems completely? Anyone
>have any other suggestions?
>
>Thanks,
>Tom
>
>
>-------------------------------------------------
>This mail sent through IMP: http://horde.org/imp/
>
>
>-------------------------------------------------------
>This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
>for problems? Stop! Download the new AJAX search engine that makes
>searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
>http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
>_______________________________________________
>Matplotlib-devel mailing list
>Mat...@li...
>https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
> 
>
From: Tom L. <lo...@as...> - 2005年12月19日 17:32:32
Hi folks,
Thanks for the quick help. I do also have numarray installed, so
I don't think the NUMARRAY setting is the problem.
Jouni, thanks for the attempted fix, but it continues to fail
for me, at the same place:
gcc: src/_na_transforms.cpp
src/_na_transforms.cpp: In member function `Py::Object 
 Bbox::update_numerix(const Py::Tuple&)':
src/_na_transforms.cpp:447: error: `isnan' not declared
src/_na_transforms.cpp:494: error: `isnan' undeclared (first use this function)
src/_na_transforms.cpp:494: error: (Each undeclared identifier is reported only 
 once for each function it appears in.)
src/_na_transforms.cpp: In member function `Py::Object 
 Bbox::update_numerix(const Py::Tuple&)':
src/_na_transforms.cpp:447: error: `isnan' not declared
src/_na_transforms.cpp:494: error: `isnan' undeclared (first use this function)
src/_na_transforms.cpp:494: error: (Each undeclared identifier is reported only 
 once for each function it appears in.)
error: Command "gcc -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic 
-DNDEBUG -g -O3 -Wall -Wstrict-prototypes -Isrc -I. -I/usr/local/include -I/usr/include -I/sw/include -I. -I/Library/
Frameworks/Python.framework/Versions/2.4/include/python2.4 -c src/_na_transforms.cpp -o build/temp.darwin-7.9.0-
Power_Macintosh-2.4/src/_na_transforms.o -DNUMARRAY=1" failed with exit status 1
I've verified that the new "using std::isnan;" line is in _transforms.cpp
and is copied to _na_transforms.cpp; it just doesn't seem to satisfy
the compiler [gcc 3.3 20030304 (Apple Computer, Inc. build 1671) on 10.3.9].
I'm not a c++ programmer, and I'm stumped as to what further to try.
Jouni, did this indeed solve your build problems completely? Anyone
have any other suggestions?
Thanks,
Tom
-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/
From: Andrew S. <str...@as...> - 2005年12月19日 07:05:52
Tom, thanks for the bug report and Jouni thanks for the fix, which I've
just checked in.
Cheers!
Andrew
Jouni K Seppanen wrote:
>Tom Loredo <lo...@as...> writes:
>
> 
>
>>I'm having trouble building the current CVS version of mpl
>>on OS X (10.3.9, Python 2.4). [...] numerix=scipy [...]
>>src/_na_transforms.cpp:493: error: `isnan' undeclared (first use this function)
>> 
>>
>
>I'm having the same problem in _nc_transforms.cpp, and I'm building on
>OS X 10.4.3, Python 2.4, gcc 4.0, and with -DNUMERIC=1 (no numarray,
>no scipy). It seems that the relevant lines in _transforms.cpp were
>last modified by astraw on 15-Dec-05.
>
>The following one-line change seems to fix that problem (but the rest
>of the build hasn't finished yet). I don't know what this does in
>other compilers, but comments in gcc's cmath suggest that the standard
>requires isnan to be in the std namespace.
>
> 
>
>------------------------------------------------------------------------
>
>Index: src/_transforms.cpp
>===================================================================
>RCS file: /cvsroot/matplotlib/matplotlib/src/_transforms.cpp,v
>retrieving revision 1.39
>diff -u -r1.39 _transforms.cpp
>--- src/_transforms.cpp	15 Dec 2005 04:54:52 -0000	1.39
>+++ src/_transforms.cpp	19 Dec 2005 06:14:42 -0000
>@@ -444,6 +444,7 @@
> Py::Object
> Bbox::update_numerix(const Py::Tuple &args) {
> //update the boox from the numerix arrays x and y
>+ using std::isnan;
> _VERBOSE("Bbox::update_numerix");
> 
> args.verify_length(3);
> 
>
From: Jouni K S. <jk...@ik...> - 2005年12月19日 06:21:50
Attachments: isnan.patch
Tom Loredo <lo...@as...> writes:
> I'm having trouble building the current CVS version of mpl
> on OS X (10.3.9, Python 2.4). [...] numerix=scipy [...]
> src/_na_transforms.cpp:493: error: `isnan' undeclared (first use this function)
I'm having the same problem in _nc_transforms.cpp, and I'm building on
OS X 10.4.3, Python 2.4, gcc 4.0, and with -DNUMERIC=1 (no numarray,
no scipy). It seems that the relevant lines in _transforms.cpp were
last modified by astraw on 15-Dec-05.
The following one-line change seems to fix that problem (but the rest
of the build hasn't finished yet). I don't know what this does in
other compilers, but comments in gcc's cmath suggest that the standard
requires isnan to be in the std namespace.
-- 
Jouni K Seppänen
From: Paul B. <peb...@gm...> - 2005年12月19日 05:21:57
Tom,
The output to gcc shows that NUMARRAY is defined. Try undefining NUMARRAY
and NUMERIC.
 -- Paul
On 12/18/05, Tom Loredo <lo...@as...> wrote:
>
>
> Hi folks,
>
> I'm having trouble building the current CVS version of mpl
> on OS X (10.3.9, Python 2.4). I am not using the 0.85 release
> because I want to use numerix=3Dscipy. I previously installed
> a CVS checkout from Dec 2, and it built fine. It seemed to
> plot fine, except that the TeX example produced blank or
> flat-line labels. I just installed the latest scipy_core
> release (and the latest scipy from svn), and also thought
> I'd try the latest mpl from CVS to see if the TeX problem was
> fixed. Now it won't build; about 6min into the build it exits:
>
> gcc: src/mplutils.cpp
> gcc: CXX/cxx_extensions.cxx
> gcc: src/_na_transforms.cpp
> src/_na_transforms.cpp: In member function `Py::Object
> Bbox::update_numerix(const Py::Tuple&)':
> src/_na_transforms.cpp:493: error: `isnan' undeclared (first use this
> function)
> src/_na_transforms.cpp:493: error: (Each undeclared identifier is reporte=
d
> only
> once for each function it appears in.)
> src/_na_transforms.cpp: In member function `Py::Object
> Bbox::update_numerix(const Py::Tuple&)':
> src/_na_transforms.cpp:493: error: `isnan' undeclared (first use this
> function)
> src/_na_transforms.cpp:493: error: (Each undeclared identifier is reporte=
d
> only
> once for each function it appears in.)
> error: Command "gcc -fno-strict-aliasing -Wno-long-double -no-cpp-precomp
> -mno-fused-madd -fno-common -dynamic
> -DNDEBUG -g -O3 -Wall -Wstrict-prototypes -Isrc -I. -I/usr/local/include
> -I/usr/include -I/sw/include -I. -I/Library/
> Frameworks/Python.framework/Versions/2.4/include/python2.4 -c
> src/_na_transforms.cpp -o build/temp.darwin-7.9.0-
> Power_Macintosh-2.4/src/_na_transforms.o -DNUMARRAY=3D1" failed with exit
> status 1
>
> I'd appreciate any help on how to fix this. I'm teaching a class
> of students using Python in about 4 weeks, and I need to provide
> them a version of things to set up on their laptops that I know
> will work with my examples.
>
> Thanks,
> Tom
>
> PS: If anyone has any tips on getting scipy to build properly on
> OS X, pass them along. The current version appears unable to find
> Apple's atlas, nor does it find the fftw libraries I installed in
> /usr/lib.
>
>
>
>
>
> -------------------------------------------------
> This mail sent through IMP: http://horde.org/imp/
>
>
> -------------------------------------------------------
> This SF.net email is sponsored by: Splunk Inc. Do you grep through log
> files
> for problems? Stop! Download the new AJAX search engine that makes
> searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
> http://ads.osdn.com/?ad_id=3D7637&alloc_id=3D16865&op=3Dclick
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
--
Paul Barrett, PhD Johns Hopkins University
Assoc. Research Scientist Dept of Physics and Astronomy
Phone: 410-516-5190 Baltimore, MD 21218
From: Tom L. <lo...@as...> - 2005年12月19日 04:31:13
Hi folks,
I'm having trouble building the current CVS version of mpl
on OS X (10.3.9, Python 2.4). I am not using the 0.85 release
because I want to use numerix=scipy. I previously installed
a CVS checkout from Dec 2, and it built fine. It seemed to
plot fine, except that the TeX example produced blank or
flat-line labels. I just installed the latest scipy_core
release (and the latest scipy from svn), and also thought
I'd try the latest mpl from CVS to see if the TeX problem was
fixed. Now it won't build; about 6min into the build it exits:
gcc: src/mplutils.cpp
gcc: CXX/cxx_extensions.cxx
gcc: src/_na_transforms.cpp
src/_na_transforms.cpp: In member function `Py::Object 
 Bbox::update_numerix(const Py::Tuple&)':
src/_na_transforms.cpp:493: error: `isnan' undeclared (first use this function)
src/_na_transforms.cpp:493: error: (Each undeclared identifier is reported only 
 once for each function it appears in.)
src/_na_transforms.cpp: In member function `Py::Object 
 Bbox::update_numerix(const Py::Tuple&)':
src/_na_transforms.cpp:493: error: `isnan' undeclared (first use this function)
src/_na_transforms.cpp:493: error: (Each undeclared identifier is reported only 
 once for each function it appears in.)
error: Command "gcc -fno-strict-aliasing -Wno-long-double -no-cpp-precomp -mno-fused-madd -fno-common -dynamic 
-DNDEBUG -g -O3 -Wall -Wstrict-prototypes -Isrc -I. -I/usr/local/include -I/usr/include -I/sw/include -I. -I/Library/
Frameworks/Python.framework/Versions/2.4/include/python2.4 -c src/_na_transforms.cpp -o build/temp.darwin-7.9.0-
Power_Macintosh-2.4/src/_na_transforms.o -DNUMARRAY=1" failed with exit status 1
I'd appreciate any help on how to fix this. I'm teaching a class
of students using Python in about 4 weeks, and I need to provide
them a version of things to set up on their laptops that I know
will work with my examples.
Thanks,
Tom
PS: If anyone has any tips on getting scipy to build properly on
OS X, pass them along. The current version appears unable to find
Apple's atlas, nor does it find the fftw libraries I installed in
/usr/lib.
 
-------------------------------------------------
This mail sent through IMP: http://horde.org/imp/

Showing 11 results of 11

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.
Thanks for helping keep SourceForge clean.
X





Briefly describe the problem (required):
Upload screenshot of ad (required):
Select a file, or drag & drop file here.
Screenshot instructions:

Click URL instructions:
Right-click on the ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)

More information about our ad policies

Ad destination/click URL:

AltStyle によって変換されたページ (->オリジナル) /