Re: [julia-users] Gadfly/pango critical error using Julia version 0.3

2014-09-12 Thread cormullion
I'm on the latest MacOS release (Mavericks), on an iMac.

julia> versioninfo()
Julia Version 0.3.0
Commit 7681878* (2014-08-20 20:43 UTC)
Platform Info:
  System: Darwin (x86_64-apple-darwin13.3.0)
  CPU: Intel(R) Core(TM) i5-2500S CPU @ 2.70GHz
  WORD_SIZE: 64
  BLAS: libopenblas (USE64BITINT DYNAMIC_ARCH NO_AFFINITY Sandybridge)
  LAPACK: libopenblas
  LIBM: libopenlibm
  LLVM: libLLVM-3.3



Re: [julia-users] Gadfly/pango critical error using Julia version 0.3

2014-09-12 Thread cormullion

On Friday, September 12, 2014 6:08:47 PM UTC+1, cormu...@mac.com wrote:

> On Friday, September 12, 2014 5:52:38 PM UTC+1, Elliot Saba wrote:
>
>> How did you install pango?
>>
> I didn't/haven't - first I've heard of it. I thought it must have been 
> installed along with Gadfly/Cairo whatever...  
>

I should mention that this is a regression, rather than an *ab initio* failure. 
I've managed to make and output plots before, using v0.3, but something has 
broken at some point due to some update. (Or we can blame Apple... :)


Re: [julia-users] Gadfly/pango critical error using Julia version 0.3

2014-09-12 Thread Elliot Saba
Can you give me more information about your computer? What OS version, etc?
On Sep 12, 2014 10:08 AM,  wrote:

> On Friday, September 12, 2014 5:52:38 PM UTC+1, Elliot Saba wrote:
>
>> How did you install pango?
>>
> I didn't/haven't - first I've heard of it. I thought it must have been
> installed along with Gadfly/Cairo whatever...
>


Re: [julia-users] Gadfly/pango critical error using Julia version 0.3

2014-09-12 Thread cormullion
On Friday, September 12, 2014 5:52:38 PM UTC+1, Elliot Saba wrote:

> How did you install pango?
>
I didn't/haven't - first I've heard of it. I thought it must have been 
installed along with Gadfly/Cairo whatever...  


Re: [julia-users] Gadfly/pango critical error using Julia version 0.3

2014-09-12 Thread Elliot Saba
How did you install pango?
On Sep 12, 2014 7:28 AM,  wrote:

> Trying to create a Gadfly plot, I saw this message:
>
>
> (process:8158): Pango-CRITICAL **: No modules found:
> No builtin or dynamically loaded modules were found.
> PangoFc will not work correctly.
> This probably means there was an error in the creation of:
>   '/usr/local/Cellar/pango/1.36.5/etc/pango/pango.modules'
> You should create this file by running:
>   pango-querymodules >
> '/usr/local/Cellar/pango/1.36.5/etc/pango/pango.modules'
>
>
> It's nice that the message is suggesting a possible solution to the
> problem...
>
> But what is this
>
>   pango-querymodules >
> '/usr/local/Cellar/pango/1.36.5/etc/pango/pango.modules'
>
> It doesn't work in a terminal, and doesn't work anywhere else.
>
> julia> using Gadfly
> julia> p = plot(x=rand(5,5), y=rand(5,5), Geom.point)
> julia> draw(PNG("myplot.png", 12cm, 6cm), p)
>
> I had previously run Pkg.update() to update everything.
>
>
>
>