SourceForge logo
SourceForge logo
Menu

matplotlib-devel

From: Brian G. <ell...@gm...> - 2015年07月22日 02:18:01
Hi all,
I am trying to get a dev build of matplotlib working with the anaconda python.
Any advice on getting matplotlib to detect and use any of the libpng/freetypes:
* Those installed with anaconda python.
* Those from homebrew
* Those that ship with OS X
Cheers,
Brian
-- 
Brian E. Granger
Cal Poly State University, San Luis Obispo
@ellisonbg on Twitter and GitHub
bgr...@ca... and ell...@gm...
From: Phil E. <pel...@gm...> - 2015年07月22日 18:20:32
Are you wanting to link against anything other than that installed with
conda?
The output of setup.py is normally pretty helpful at letting you know which
library it has found to build against.
On 20 July 2015 at 01:54, Brian Granger <ell...@gm...> wrote:
> Hi all,
>
> I am trying to get a dev build of matplotlib working with the anaconda
> python.
>
> Any advice on getting matplotlib to detect and use any of the
> libpng/freetypes:
>
> * Those installed with anaconda python.
> * Those from homebrew
> * Those that ship with OS X
>
> Cheers,
>
> Brian
>
> --
> Brian E. Granger
> Cal Poly State University, San Luis Obispo
> @ellisonbg on Twitter and GitHub
> bgr...@ca... and ell...@gm...
>
>
> ------------------------------------------------------------------------------
> Don't Limit Your Business. Reach for the Cloud.
> GigeNET's Cloud Solutions provide you with the tools and support that
> you need to offload your IT needs and focus on growing your business.
> Configured For All Businesses. Start Your Cloud Today.
> https://www.gigenetcloud.com/
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
From: Brian G. <ell...@gm...> - 2015年07月22日 23:17:36
No I am fine linking against the stuff that ships with conda - just
not clear on how to get the setup.py logic to look in the right place.
On Wed, Jul 22, 2015 at 11:20 AM, Phil Elson <pel...@gm...> wrote:
> Are you wanting to link against anything other than that installed with
> conda?
> The output of setup.py is normally pretty helpful at letting you know which
> library it has found to build against.
>
> On 20 July 2015 at 01:54, Brian Granger <ell...@gm...> wrote:
>>
>> Hi all,
>>
>> I am trying to get a dev build of matplotlib working with the anaconda
>> python.
>>
>> Any advice on getting matplotlib to detect and use any of the
>> libpng/freetypes:
>>
>> * Those installed with anaconda python.
>> * Those from homebrew
>> * Those that ship with OS X
>>
>> Cheers,
>>
>> Brian
>>
>> --
>> Brian E. Granger
>> Cal Poly State University, San Luis Obispo
>> @ellisonbg on Twitter and GitHub
>> bgr...@ca... and ell...@gm...
>>
>>
>> ------------------------------------------------------------------------------
>> Don't Limit Your Business. Reach for the Cloud.
>> GigeNET's Cloud Solutions provide you with the tools and support that
>> you need to offload your IT needs and focus on growing your business.
>> Configured For All Businesses. Start Your Cloud Today.
>> https://www.gigenetcloud.com/
>> _______________________________________________
>> Matplotlib-devel mailing list
>> Mat...@li...
>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
>
-- 
Brian E. Granger
Cal Poly State University, San Luis Obispo
@ellisonbg on Twitter and GitHub
bgr...@ca... and ell...@gm...
From: Nathan G. <nat...@gm...> - 2015年07月23日 00:00:28
One way to do this is to build a Conda package using the matplotlib recipe:
https://github.com/conda/conda-recipes/tree/master/matplotlib
Looking at the Conda recipe might give you some hints about how it locates
png.h as well, although I haven't checked in detail.
On Wednesday, July 22, 2015, Brian Granger <ell...@gm...> wrote:
> No I am fine linking against the stuff that ships with conda - just
> not clear on how to get the setup.py logic to look in the right place.
>
> On Wed, Jul 22, 2015 at 11:20 AM, Phil Elson <pel...@gm...
> <javascript:;>> wrote:
> > Are you wanting to link against anything other than that installed with
> > conda?
> > The output of setup.py is normally pretty helpful at letting you know
> which
> > library it has found to build against.
> >
> > On 20 July 2015 at 01:54, Brian Granger <ell...@gm...
> <javascript:;>> wrote:
> >>
> >> Hi all,
> >>
> >> I am trying to get a dev build of matplotlib working with the anaconda
> >> python.
> >>
> >> Any advice on getting matplotlib to detect and use any of the
> >> libpng/freetypes:
> >>
> >> * Those installed with anaconda python.
> >> * Those from homebrew
> >> * Those that ship with OS X
> >>
> >> Cheers,
> >>
> >> Brian
> >>
> >> --
> >> Brian E. Granger
> >> Cal Poly State University, San Luis Obispo
> >> @ellisonbg on Twitter and GitHub
> >> bgr...@ca... <javascript:;> and ell...@gm...
> <javascript:;>
> >>
> >>
> >>
> ------------------------------------------------------------------------------
> >> Don't Limit Your Business. Reach for the Cloud.
> >> GigeNET's Cloud Solutions provide you with the tools and support that
> >> you need to offload your IT needs and focus on growing your business.
> >> Configured For All Businesses. Start Your Cloud Today.
> >> https://www.gigenetcloud.com/
> >> _______________________________________________
> >> Matplotlib-devel mailing list
> >> Mat...@li... <javascript:;>
> >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
> >
> >
>
>
>
> --
> Brian E. Granger
> Cal Poly State University, San Luis Obispo
> @ellisonbg on Twitter and GitHub
> bgr...@ca... <javascript:;> and ell...@gm... <javascript:;>
>
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li... <javascript:;>
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
From: Michael D. <md...@st...> - 2015年07月31日 21:26:08
Sorry for the delayed response.
I had a discussion thread with Aaron Meurer last year about adding 
pkg-config support to anaconda so that matplotlib would build 
out-of-the-box, but I don't think that's gone anywhere. That would 
allow the extensive patches in the anaconda matplotlib recipe (and 
probably many other recipes for C and Unixy packages) to go away. (Note 
that the "pkgconfig" Python package in Anaconda is just the Python 
wrapper to the underlying Unix tool which is not present in Anaconda).
Mike
On 07/22/2015 07:52 PM, Nathan Goldbaum wrote:
> One way to do this is to build a Conda package using the matplotlib 
> recipe:
>
> https://github.com/conda/conda-recipes/tree/master/matplotlib
>
> Looking at the Conda recipe might give you some hints about how it 
> locates png.h as well, although I haven't checked in detail.
>
> On Wednesday, July 22, 2015, Brian Granger <ell...@gm... 
> <mailto:ell...@gm...>> wrote:
>
> No I am fine linking against the stuff that ships with conda - just
> not clear on how to get the setup.py logic to look in the right place.
>
> On Wed, Jul 22, 2015 at 11:20 AM, Phil Elson <pel...@gm...
> <javascript:;>> wrote:
> > Are you wanting to link against anything other than that
> installed with
> > conda?
> > The output of setup.py is normally pretty helpful at letting you
> know which
> > library it has found to build against.
> >
> > On 20 July 2015 at 01:54, Brian Granger <ell...@gm...
> <javascript:;>> wrote:
> >>
> >> Hi all,
> >>
> >> I am trying to get a dev build of matplotlib working with the
> anaconda
> >> python.
> >>
> >> Any advice on getting matplotlib to detect and use any of the
> >> libpng/freetypes:
> >>
> >> * Those installed with anaconda python.
> >> * Those from homebrew
> >> * Those that ship with OS X
> >>
> >> Cheers,
> >>
> >> Brian
> >>
> >> --
> >> Brian E. Granger
> >> Cal Poly State University, San Luis Obispo
> >> @ellisonbg on Twitter and GitHub
> >> bgr...@ca... <javascript:;> and ell...@gm...
> <javascript:;>
> >>
> >>
> >>
> ------------------------------------------------------------------------------
> >> Don't Limit Your Business. Reach for the Cloud.
> >> GigeNET's Cloud Solutions provide you with the tools and
> support that
> >> you need to offload your IT needs and focus on growing your
> business.
> >> Configured For All Businesses. Start Your Cloud Today.
> >> https://www.gigenetcloud.com/
> >> _______________________________________________
> >> Matplotlib-devel mailing list
> >> Mat...@li... <javascript:;>
> >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
> >
> >
>
>
>
> --
> Brian E. Granger
> Cal Poly State University, San Luis Obispo
> @ellisonbg on Twitter and GitHub
> bgr...@ca... <javascript:;> and ell...@gm...
> <javascript:;>
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li... <javascript:;>
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
>
>
> ------------------------------------------------------------------------------
>
>
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
From: Brian G. <ell...@gm...> - 2015年08月03日 19:02:59
Thanks Mike. I haven't had a chance to investigate further, but when I
do I will look at pkg-config...
On Fri, Jul 31, 2015 at 2:26 PM, Michael Droettboom <md...@st...> wrote:
> Sorry for the delayed response.
>
> I had a discussion thread with Aaron Meurer last year about adding
> pkg-config support to anaconda so that matplotlib would build
> out-of-the-box, but I don't think that's gone anywhere. That would allow
> the extensive patches in the anaconda matplotlib recipe (and probably many
> other recipes for C and Unixy packages) to go away. (Note that the
> "pkgconfig" Python package in Anaconda is just the Python wrapper to the
> underlying Unix tool which is not present in Anaconda).
>
> Mike
>
>
> On 07/22/2015 07:52 PM, Nathan Goldbaum wrote:
>
> One way to do this is to build a Conda package using the matplotlib recipe:
>
> https://github.com/conda/conda-recipes/tree/master/matplotlib
>
> Looking at the Conda recipe might give you some hints about how it locates
> png.h as well, although I haven't checked in detail.
>
> On Wednesday, July 22, 2015, Brian Granger <ell...@gm...> wrote:
>>
>> No I am fine linking against the stuff that ships with conda - just
>> not clear on how to get the setup.py logic to look in the right place.
>>
>> On Wed, Jul 22, 2015 at 11:20 AM, Phil Elson <pel...@gm...> wrote:
>> > Are you wanting to link against anything other than that installed with
>> > conda?
>> > The output of setup.py is normally pretty helpful at letting you know
>> > which
>> > library it has found to build against.
>> >
>> > On 20 July 2015 at 01:54, Brian Granger <ell...@gm...> wrote:
>> >>
>> >> Hi all,
>> >>
>> >> I am trying to get a dev build of matplotlib working with the anaconda
>> >> python.
>> >>
>> >> Any advice on getting matplotlib to detect and use any of the
>> >> libpng/freetypes:
>> >>
>> >> * Those installed with anaconda python.
>> >> * Those from homebrew
>> >> * Those that ship with OS X
>> >>
>> >> Cheers,
>> >>
>> >> Brian
>> >>
>> >> --
>> >> Brian E. Granger
>> >> Cal Poly State University, San Luis Obispo
>> >> @ellisonbg on Twitter and GitHub
>> >> bgr...@ca... and ell...@gm...
>> >>
>> >>
>> >>
>> >> ------------------------------------------------------------------------------
>> >> Don't Limit Your Business. Reach for the Cloud.
>> >> GigeNET's Cloud Solutions provide you with the tools and support that
>> >> you need to offload your IT needs and focus on growing your business.
>> >> Configured For All Businesses. Start Your Cloud Today.
>> >> https://www.gigenetcloud.com/
>> >> _______________________________________________
>> >> Matplotlib-devel mailing list
>> >> Mat...@li...
>> >> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>> >
>> >
>>
>>
>>
>> --
>> Brian E. Granger
>> Cal Poly State University, San Luis Obispo
>> @ellisonbg on Twitter and GitHub
>> bgr...@ca... and ell...@gm...
>>
>>
>> ------------------------------------------------------------------------------
>> _______________________________________________
>> Matplotlib-devel mailing list
>> Mat...@li...
>> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
>
>
> ------------------------------------------------------------------------------
>
>
>
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
>
>
> ------------------------------------------------------------------------------
>
> _______________________________________________
> Matplotlib-devel mailing list
> Mat...@li...
> https://lists.sourceforge.net/lists/listinfo/matplotlib-devel
>
-- 
Brian E. Granger
Cal Poly State University, San Luis Obispo
@ellisonbg on Twitter and GitHub
bgr...@ca... and ell...@gm...
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 によって変換されたページ (->オリジナル) /