Invalid certificate for https://cdn.pydata.org/bokeh/release/bokeh-0.11.1.min.css

Hello,

I installed Anaconda2 on my Mac and tried to execute the first example at:

http://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html

but opening the lines.html file in Safari shows this message in the developer console:

Failed to load resource: The certificate for this server is invalid. You might be connecting to a server that is pretending to be “cdn.pydata.org” which could put your confidential information at risk.

If I edit the lines.html and change the "https"s to "http"s the page loads and the Bokeh plot interface works.

I want to use Bokeh in my Jupyter Notebooks, but I think this issue is preventing it from working there. Is there a work around or a plan to fix the certificate on cdn.pydata.org?

Thanks in advance,

Mike

I’ve notified the IT folks to look into this immediately.

Thanks,

Bryan

···

On May 11, 2016, at 18:45, [email protected] wrote:

Hello,

I installed Anaconda2 on my Mac and tried to execute the first example at:

http://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html

but opening the lines.html file in Safari shows this message in the developer console:

Failed to load resource: The certificate for this server is invalid. You might be connecting to a server that is pretending to be “cdn.pydata.org” which could put your confidential information at risk.

If I edit the lines.html and change the "https"s to "http"s the page loads and the Bokeh plot interface works.

I want to use Bokeh in my Jupyter Notebooks, but I think this issue is preventing it from working there. Is there a work around or a plan to fix the certificate on cdn.pydata.org?

Thanks in advance,

Mike

You received this message because you are subscribed to the Google Groups “Bokeh Discussion - Public” group.

To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].

To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/fb9bc24d-2d5d-4395-8e8d-6077d8395d33%40continuum.io.

For more options, visit https://groups.google.com/a/continuum.io/d/optout.

I have tried the same on safari, and not had an issue. I can
confirm that lines.html has the https reference in it, but safari
doesn’t give me a warning and successfully loads the https
resource…

  Can you provide more information - I'm not sure what the

additional information would be. Are you behind a firewall.

Having said that there absolutely is a workaround.

If you’re in a notebook do the following:

  from bokeh.io import output_notebook, show # This is the same as

before

from bokeh.resources import INLINE

output_notebook(resources=INLINE)

Then everything should run just fine.

If you’re using output_file, then you can just add mode=‘inline’

  output_file("lines.html", title="line plot example", mode='inline')

HTH

Bird
···

On 5/11/16 11:08 AM, Bryan Van de Ven
wrote:

I’ve notified the IT folks to look into this immediately.

Thanks,

Bryan

    On May 11, 2016, at 18:45, [email protected]
    wrote:

Hello,

          I installed Anaconda2 on my Mac and tried to execute

the first example at:

http://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html

          but opening the lines.html file in Safari shows this

message in the developer console:

          Failed to load resource: The certificate for this

server is invalid. You might be connecting to a server
that is pretending to be “cdn.pydata.org ” which
could put your confidential information at risk.

          If I edit the lines.html and change the "https"s to

"http"s the page loads and the Bokeh plot interface works.

          I want to use Bokeh in my Jupyter Notebooks, but I

think this issue is preventing it from working there. Is
there a work around or a plan to fix the certificate on cdn.pydata.org?

Thanks in advance,

Mike

      You received this message because you are subscribed to the

Google Groups “Bokeh Discussion - Public” group.

      To unsubscribe from this group and stop receiving emails from

it, send an email to [email protected].

      To post to this group, send email to           .

To view this discussion on the web visit .
For more options, visit .

  You received this message because you are subscribed to the Google

Groups “Bokeh Discussion - Public” group.

  To unsubscribe from this group and stop receiving emails from it,

send an email to [email protected].

  To post to this group, send email to [email protected].

  To view this discussion on the web visit [](https://groups.google.com/a/continuum.io/d/msgid/bokeh/8C27C454-A6C5-4604-AC8B-3E632D84EFC0%40continuum.io?utm_medium=email&utm_source=footer)      .

For more options, visit .


Sarah Bird
Developer, Bokeh

    [
      ![Continuum Analytics](http://docs.continuum.io/_static/img/ContinuumWordmark.png)
    ](http://continuum.io)

[email protected]
https://groups.google.com/a/continuum.io/d/msgid/bokeh/fb9bc24d-2d5d-4395-8e8d-6077d8395d33%40continuum.io
https://groups.google.com/a/continuum.io/d/optout
https://groups.google.com/a/continuum.io/d/msgid/bokeh/8C27C454-A6C5-4604-AC8B-3E632D84EFC0%40continuum.io
https://groups.google.com/a/continuum.io/d/optout

Perfect!

Thanks for the workaround. It works for me, but only after restarting Safari. I am operating behind a firewall, but I don’t understand how that might affect certificates.

-Mike

···

On Wednesday, May 11, 2016 at 12:51:57 PM UTC-7, Sarah Bird wrote:

  I have tried the same on safari, and not had an issue. I can

confirm that lines.html has the https reference in it, but safari
doesn’t give me a warning and successfully loads the https
resource…

  Can you provide more information - I'm not sure what the

additional information would be. Are you behind a firewall.

Having said that there absolutely is a workaround.

If you’re in a notebook do the following:

from bokeh.io import output_notebook, show # This is the same as
before

from bokeh.resources import INLINE

output_notebook(resources=INLINE)

Then everything should run just fine.

If you’re using output_file, then you can just add mode=‘inline’

  output_file("lines.html", title="line plot example", mode='inline')
HTH



Bird


  On 5/11/16 11:08 AM, Bryan Van de Ven > wrote:

I’ve notified the IT folks to look into this immediately.

Thanks,

Bryan

    On May 11, 2016, at 18:45, [email protected] > >         wrote:

Hello,

          I installed Anaconda2 on my Mac and tried to execute

the first example at:

http://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html

          but opening the lines.html file in Safari shows this

message in the developer console:

          Failed to load resource: The certificate for this

server is invalid. You might be connecting to a server
that is pretending to be “cdn.pydata.org ” which
could put your confidential information at risk.

          If I edit the lines.html and change the "https"s to

"http"s the page loads and the Bokeh plot interface works.

          I want to use Bokeh in my Jupyter Notebooks, but I

think this issue is preventing it from working there. Is
there a work around or a plan to fix the certificate on cdn.pydata.org?

Thanks in advance,

Mike

      You received this message because you are subscribed to the

Google Groups “Bokeh Discussion - Public” group.

      To unsubscribe from this group and stop receiving emails from

it, send an email to [email protected].

      To post to this group, send email to [email protected].

      To view this discussion on the web visit [](https://groups.google.com/a/continuum.io/d/msgid/bokeh/fb9bc24d-2d5d-4395-8e8d-6077d8395d33%40continuum.io?utm_medium=email&utm_source=footer)[https://groups.google.com/a/continuum.io/d/msgid/bokeh/fb9bc24d-2d5d-4395-8e8d-6077d8395d33%40continuum.io](https://groups.google.com/a/continuum.io/d/msgid/bokeh/fb9bc24d-2d5d-4395-8e8d-6077d8395d33%40continuum.io).

      For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).

  You received this message because you are subscribed to the Google

Groups “Bokeh Discussion - Public” group.

  To unsubscribe from this group and stop receiving emails from it,

send an email to [email protected].

  To post to this group, send email to [email protected].

  To view this discussion on the web visit [](https://groups.google.com/a/continuum.io/d/msgid/bokeh/8C27C454-A6C5-4604-AC8B-3E632D84EFC0%40continuum.io?utm_medium=email&utm_source=footer)[https://groups.google.com/a/continuum.io/d/msgid/bokeh/8C27C454-A6C5-4604-AC8B-3E632D84EFC0%40continuum.io](https://groups.google.com/a/continuum.io/d/msgid/bokeh/8C27C454-A6C5-4604-AC8B-3E632D84EFC0%40continuum.io).

  For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).


Sarah Bird
Developer, Bokeh

    [
      <img alt="Continuum Analytics" src="https://lh6.googleusercontent.com/proxy/VYgVjggTk1hCXSN9wFkffE3I6kxTvJ51tT4KvDXOuKbs1WyFG66k7kt2-vkDimbyxfWtP-d1paJmstMYhPPnDYSUF4rLPoYM2GM2QFM=w5000-h5000" height="30px" width="150px">
    ](http://continuum.io)

when you say “It works for me, but only after restarting Safari.”
do you mean that:

  • you were in the notebook
    - bokeh wasn’t working (because of certificate issue),
    - then you tried my workaround it didn’t work at first
    - but when you restarted safari it did work?
···

On 5/11/16 3:49 PM, wrote:

[email protected]

Perfect!

      Thanks for the workaround. It works for me, but only after

restarting Safari. I am operating behind a firewall, but I
don’t understand how that might affect certificates.

-Mike

      On Wednesday, May 11, 2016 at 12:51:57 PM UTC-7, Sarah Bird

wrote:

            I have tried the same on safari, and not had an issue.

I can confirm that lines.html has the https reference in
it, but safari doesn’t give me a warning and
successfully loads the https resource…

            Can you provide more information - I'm not sure what

the additional information would be. Are you behind a
firewall.

Having said that there absolutely is a workaround.

If you’re in a notebook do the following:

from bokeh.io import output_notebook, show #
This is the same as before

from bokeh.resources import INLINE

output_notebook(resources=INLINE)

Then everything should run just fine.

            If you're using output_file, then you can just add

mode=‘inline’

            output_file("lines.html", title="line plot example",

mode=‘inline’)

          HTH



          Bird

On 5/11/16 11:08 AM, Bryan Van de Ven wrote:

              I've notified the IT folks to look into this

immediately.

Thanks,

Bryan

              On May 11, 2016, at 18:45, [email protected]
              wrote:

Hello,

                    I installed Anaconda2 on my Mac and tried to

execute the first example at:

http://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html

                    but opening the lines.html file in Safari

shows this message in the developer console:

                    Failed to load resource: The certificate

for this server is invalid. You might be
connecting to a server that is pretending to be
cdn.pydata.org ” which could put
your confidential information at risk.

                    If I edit the lines.html and change the

"https"s to "http"s the page loads and the Bokeh
plot interface works.

                    I want to use Bokeh in my Jupyter Notebooks,

but I think this issue is preventing it from
working there. Is there a work around or a plan
to fix the certificate on cdn.pydata.org?

Thanks in advance,

Mike

                You received this message because you are subscribed

to the Google Groups “Bokeh Discussion - Public”
group.

                To unsubscribe from this group and stop receiving

emails from it, send an email to

            You received this message because you are subscribed to

the Google Groups “Bokeh Discussion - Public” group.

            To unsubscribe from this group and stop receiving emails

from it, send an email to [email protected].

            To post to this group, send email to                 .

To view this discussion on the web visit


Sarah Bird
Developer, Bokeh

              [ ![Continuum
                  Analytics](https://lh6.googleusercontent.com/proxy/VYgVjggTk1hCXSN9wFkffE3I6kxTvJ51tT4KvDXOuKbs1WyFG66k7kt2-vkDimbyxfWtP-d1paJmstMYhPPnDYSUF4rLPoYM2GM2QFM=w5000-h5000) ](http://continuum.io)

  You received this message because you are subscribed to the Google

Groups “Bokeh Discussion - Public” group.

  To unsubscribe from this group and stop receiving emails from it,

send an email to [email protected].

  To post to this group, send email to [email protected].

  To view this discussion on the web visit [](https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io?utm_medium=email&utm_source=footer)      .

For more options, visit .


Sarah Bird
Developer, Bokeh

    [
      ![Continuum Analytics](http://docs.continuum.io/_static/img/ContinuumWordmark.png)
    ](http://continuum.io)

[email protected].

                To post to this group, send email to                     .

To view this discussion on the web visit [email protected]
https://groups.google.com/a/continuum.io/d/msgid/bokeh/fb9bc24d-2d5d-4395-8e8d-6077d8395d33%40continuum.io.

                For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).

              [email protected]

https://groups.google.com/a/continuum.io/d/msgid/bokeh/8C27C454-A6C5-4604-AC8B-3E632D84EFC0%40continuum.io.

            For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).

          [https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io](https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io)

https://groups.google.com/a/continuum.io/d/optout

Yes. That’s exactly what happened.

-Mike

···

On 5/11/16 3:49 PM, wrote:

[email protected]

Perfect!

      Thanks for the workaround. It works for me, but only after

restarting Safari. I am operating behind a firewall, but I
don’t understand how that might affect certificates.

-Mike

      On Wednesday, May 11, 2016 at 12:51:57 PM UTC-7, Sarah Bird

wrote:

            I have tried the same on safari, and not had an issue.

I can confirm that lines.html has the https reference in
it, but safari doesn’t give me a warning and
successfully loads the https resource…

            Can you provide more information - I'm not sure what

the additional information would be. Are you behind a
firewall.

Having said that there absolutely is a workaround.

If you’re in a notebook do the following:

from bokeh.io import output_notebook, show #
This is the same as before

from bokeh.resources import INLINE

output_notebook(resources=INLINE)

Then everything should run just fine.

            If you're using output_file, then you can just add

mode=‘inline’

            output_file("lines.html", title="line plot example",

mode=‘inline’)

          HTH



          Bird

On 5/11/16 11:08 AM, Bryan Van de Ven wrote:

              I've notified the IT folks to look into this

immediately.

Thanks,

Bryan

              On May 11, 2016, at 18:45, [email protected]
              wrote:

Hello,

                    I installed Anaconda2 on my Mac and tried to

execute the first example at:

http://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html

                    but opening the lines.html file in Safari

shows this message in the developer console:

                    Failed to load resource: The certificate

for this server is invalid. You might be
connecting to a server that is pretending to be
cdn.pydata.org ” which could put
your confidential information at risk.

                    If I edit the lines.html and change the

"https"s to "http"s the page loads and the Bokeh
plot interface works.

                    I want to use Bokeh in my Jupyter Notebooks,

but I think this issue is preventing it from
working there. Is there a work around or a plan
to fix the certificate on cdn.pydata.org?

Thanks in advance,

Mike

                You received this message because you are subscribed

to the Google Groups “Bokeh Discussion - Public”
group.

                To unsubscribe from this group and stop receiving

emails from it, send an email to

            You received this message because you are subscribed to

the Google Groups “Bokeh Discussion - Public” group.

            To unsubscribe from this group and stop receiving emails

from it, send an email to [email protected].

            To post to this group, send email to                 .

To view this discussion on the web visit


Sarah Bird
Developer, Bokeh

              [ ![Continuum
                  Analytics](https://lh6.googleusercontent.com/proxy/VYgVjggTk1hCXSN9wFkffE3I6kxTvJ51tT4KvDXOuKbs1WyFG66k7kt2-vkDimbyxfWtP-d1paJmstMYhPPnDYSUF4rLPoYM2GM2QFM=w5000-h5000) ](http://continuum.io)

  You received this message because you are subscribed to the Google

Groups “Bokeh Discussion - Public” group.

  To unsubscribe from this group and stop receiving emails from it,

send an email to [email protected].

  To post to this group, send email to [email protected].

  To view this discussion on the web visit [](https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io?utm_medium=email&utm_source=footer)      .

For more options, visit .
[email protected].

                To post to this group, send email to                     .

To view this discussion on the web visit [email protected]
https://groups.google.com/a/continuum.io/d/msgid/bokeh/fb9bc24d-2d5d-4395-8e8d-6077d8395d33%40continuum.io.

                For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).

              [email protected]

https://groups.google.com/a/continuum.io/d/msgid/bokeh/8C27C454-A6C5-4604-AC8B-3E632D84EFC0%40continuum.io.

            For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).

          [https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io](https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io)

https://groups.google.com/a/continuum.io/d/optout


Sarah Bird
Developer, Bokeh

    [
      ![Continuum Analytics](http://docs.continuum.io/_static/img/ContinuumWordmark.png)
    ](http://continuum.io)

https://groups.google.com/a/continuum.io/d/topic/bokeh/vyNuJmNV5R0/unsubscribe
[email protected]
[email protected]
https://groups.google.com/a/continuum.io/d/msgid/bokeh/b6a9c813-c9a0-3568-5514-da7f9e627330%40continuum.io
https://groups.google.com/a/continuum.io/d/optout

OK cool.

Just for future reference ,
this is one of those qu irks
with b okeh in the notebook (or
maybe it’s just notebooks).

Wh en you want to
“flush” the
js / css - as you did when you changed
the resources. All you need to do
i s
refresh
the whole
notebook page.

My usual routine is to:

        1) save the notebook

            2) reset the kernel (under the kernel menu)           clearing

all the output while I’m at it

        3) refresh the web page

I feel pretty confident that your
certificate issue is related to your firewall.

Sincerely,

Sarah Bird

···

On 5/11/16 5:49 PM, Mike McCann wrote:

Yes. That’s exactly what happened.

-Mike

    On May 11, 2016, at 5:35 PM, Sarah Bird - Continuum <        >

wrote:

        when you say "It works for me, but only after restarting

Safari." do you mean that:

  • you were in the notebook
    - bokeh wasn’t working (because of certificate issue),
    - then you tried my workaround it didn’t work at first
    - but when you restarted safari it did work?
      -- You received this message because you are subscribed to a

topic in the Google Groups “Bokeh Discussion - Public” group.
To unsubscribe from this topic, visit .
To unsubscribe from this group and all its topics, send an
email to .
To post to this group, send email to .
To view this discussion on the web visit .
For more options, visit .

  You received this message because you are subscribed to the Google

Groups “Bokeh Discussion - Public” group.

  To unsubscribe from this group and stop receiving emails from it,

send an email to [email protected].

  To post to this group, send email to [email protected].

  To view this discussion on the web visit [](https://groups.google.com/a/continuum.io/d/msgid/bokeh/43836738-5FF4-4C16-ADBD-888804141F07%40gmail.com?utm_medium=email&utm_source=footer)      .

For more options, visit .


Sarah Bird
Developer, Bokeh

    [
      ![Continuum Analytics](http://docs.continuum.io/_static/img/ContinuumWordmark.png)
    ](http://continuum.io)

[email protected]

        On 5/11/16 3:49 PM, wrote:

[email protected]

Perfect!

            Thanks for the workaround. It works for me, but only

after restarting Safari. I am operating behind a
firewall, but I don’t understand how that might affect
certificates.

-Mike

            On Wednesday, May 11, 2016 at 12:51:57 PM UTC-7, Sarah

Bird wrote:

                  I have tried the same on safari, and not had an

issue. I can confirm that lines.html has the https
reference in it, but safari doesn’t give me a
warning and successfully loads the https
resource…

                  Can you provide more information - I'm not sure

what the additional information would be. Are you
behind a firewall.

                  Having said that there absolutely is a

workaround.

If you’re in a notebook do the following:

from bokeh.io import output_notebook, show

This is the same as before

from bokeh.resources import INLINE

output_notebook(resources=INLINE)

Then everything should run just fine.

                  If you're using output_file, then you can just

add mode=‘inline’

                  output_file("lines.html", title="line plot

example", mode=‘inline’)

                HTH



                Bird

On 5/11/16 11:08 AM, Bryan Van de Ven wrote:

                    I've notified the IT folks to look into this

immediately.

Thanks,

Bryan

                    On May 11, 2016, at 18:45,  wrote:

Hello,

                          I installed Anaconda2 on my Mac and

tried to execute the first example at:

http://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html

                          but opening the lines.html file in

Safari shows this message in the developer
console:

                          Failed to load resource: The

certificate for this server is invalid.
You might be connecting to a server that
is pretending to be “cdn.pydata.org ” which could
put your confidential information at risk.

                          If I edit the lines.html and change the

"https"s to "http"s the page loads and the
Bokeh plot interface works.

                          I want to use Bokeh in my Jupyter

Notebooks, but I think this issue is
preventing it from working there. Is there
a work around or a plan to fix the
certificate on cdn.pydata.org?

Thanks in advance,

Mike

                      You received this message because you are

subscribed to the Google Groups “Bokeh
Discussion - Public” group.

                      To unsubscribe from this group and stop

receiving emails from it, send an email to

                  You received this message because you are

subscribed to the Google Groups "Bokeh Discussion

  • Public" group.

                    To unsubscribe from this group and stop receiving
    

emails from it, send an email to


Sarah Bird
Developer, Bokeh

                    [ ![Continuum Analytics](https://lh6.googleusercontent.com/proxy/VYgVjggTk1hCXSN9wFkffE3I6kxTvJ51tT4KvDXOuKbs1WyFG66k7kt2-vkDimbyxfWtP-d1paJmstMYhPPnDYSUF4rLPoYM2GM2QFM=w5000-h5000) ](http://continuum.io)

        You received this message because you are subscribed to the

Google Groups “Bokeh Discussion - Public” group.

        To unsubscribe from this group and stop receiving emails

from it, send an email to [email protected].

        To post to this group, send email to             .

To view this discussion on the web visit .
For more options, visit .
[email protected]

[email protected].

                      To post to this group, send email to .

To view this discussion on the web visit [email protected]
https://groups.google.com/a/continuum.io/d/msgid/bokeh/fb9bc24d-2d5d-4395-8e8d-6077d8395d33%40continuum.io.

                      For more options, visit [](https://groups.google.com/a/continuum.io/d/optout)[https://groups.google.com/a/](https://groups.google.com/a/)continuum.io/d/optout.

                    [email protected].

                  To post to this group, send email to .

To view this discussion on the web visit [email protected]
https://groups.google.com/a/continuum.io/d/msgid/bokeh/8C27C454-A6C5-4604-AC8B-3E632D84EFC0%40continuum.io.

                  For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).

                [email protected]

https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io
https://groups.google.com/a/continuum.io/d/optout


Sarah Bird
Developer, Bokeh

          [ ![Continuum Analytics](http://docs.continuum.io/_static/img/ContinuumWordmark.png) ](http://continuum.io)

https://groups.google.com/a/continuum.io/d/topic/bokeh/vyNuJmNV5R0/unsubscribe
[email protected]
[email protected]
https://groups.google.com/a/continuum.io/d/msgid/bokeh/b6a9c813-c9a0-3568-5514-da7f9e627330%40continuum.io
https://groups.google.com/a/continuum.io/d/optout
https://groups.google.com/a/continuum.io/d/msgid/bokeh/43836738-5FF4-4C16-ADBD-888804141F07%40gmail.com
https://groups.google.com/a/continuum.io/d/optout

To follow up on the Certificate issue on my Mac…

It seems that some corrupted certificates were stored in my Keychain. I opened “Keychain Access.app”, deleted them and restarted my browsers.

The examples now open fine on my computer.

-Mike

···

On Wed, May 11, 2016 at 7:25 PM, Sarah Bird - Continuum [email protected] wrote:

OK cool.

Just for future reference ,
this is one of those qu irks
with b okeh in the notebook (or
maybe it’s just notebooks).

Wh en you want to
“flush” the
js / css - as you did when you changed
the resources. All you need to do
i s
refresh
the whole
notebook page.

My usual routine is to:

        1) save the notebook

            2) reset the kernel (under the kernel menu)           clearing

all the output while I’m at it

        3) refresh the web page

I feel pretty confident that your
certificate issue is related to your firewall.

Sincerely,

Sarah Bird

On 5/11/16 5:49 PM, Mike McCann wrote:

Yes. That’s exactly what happened.

-Mike

    On May 11, 2016, at 5:35 PM, Sarah Bird - Continuum <[email protected]        >

wrote:

        when you say "It works for me, but only after restarting

Safari." do you mean that:

  • you were in the notebook
    - bokeh wasn’t working (because of certificate issue),
    - then you tried my workaround it didn’t work at first
    - but when you restarted safari it did work?

On 5/11/16 3:49 PM, [email protected]
wrote:

Perfect!

            Thanks for the workaround. It works for me, but only

after restarting Safari. I am operating behind a
firewall, but I don’t understand how that might affect
certificates.

-Mike

            On Wednesday, May 11, 2016 at 12:51:57 PM UTC-7, Sarah

Bird wrote:

                  I have tried the same on safari, and not had an

issue. I can confirm that lines.html has the https
reference in it, but safari doesn’t give me a
warning and successfully loads the https
resource…

                  Can you provide more information - I'm not sure

what the additional information would be. Are you
behind a firewall.

                  Having said that there absolutely is a

workaround.

If you’re in a notebook do the following:

from bokeh.io import output_notebook, show

This is the same as before

from bokeh.resources import INLINE

output_notebook(resources=INLINE)

Then everything should run just fine.

                  If you're using output_file, then you can just

add mode=‘inline’

                  output_file("lines.html", title="line plot

example", mode=‘inline’)

                HTH



                Bird

On 5/11/16 11:08 AM, Bryan Van de Ven wrote:

                    I've notified the IT folks to look into this

immediately.

Thanks,

Bryan

                    On May 11, 2016, at 18:45, [email protected] wrote:

Hello,

                          I installed Anaconda2 on my Mac and

tried to execute the first example at:

http://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html

                          but opening the lines.html file in

Safari shows this message in the developer
console:

                          Failed to load resource: The

certificate for this server is invalid.
You might be connecting to a server that
is pretending to be “cdn.pydata.org ” which could
put your confidential information at risk.

                          If I edit the lines.html and change the

"https"s to "http"s the page loads and the
Bokeh plot interface works.

                          I want to use Bokeh in my Jupyter

Notebooks, but I think this issue is
preventing it from working there. Is there
a work around or a plan to fix the
certificate on cdn.pydata.org?

Thanks in advance,

Mike

                      You received this message because you are

subscribed to the Google Groups “Bokeh
Discussion - Public” group.

                      To unsubscribe from this group and stop

receiving emails from it, send an email to [email protected].

                      To post to this group, send email to [email protected].

                      To view this discussion on the web visit [](https://groups.google.com/a/)[https://groups.google.com/a/](https://groups.google.com/a/)[continuum.io/d/msgid/bokeh/](http://continuum.io/d/msgid/bokeh/)fb9bc24d-2d5d-4395-8e8d-6077d8395d33%[40continuum.io](http://40continuum.io).

                      For more options, visit [](https://groups.google.com/a/continuum.io/d/optout)[https://groups.google.com/a/](https://groups.google.com/a/)[continuum.io/d/optout](http://continuum.io/d/optout).

                  You received this message because you are

subscribed to the Google Groups "Bokeh Discussion

  • Public" group.

                    To unsubscribe from this group and stop receiving
    

emails from it, send an email to [email protected].

                  To post to this group, send email to [email protected].

                  To view this discussion on the web visit [](https://groups.google.com/a/)[https://groups.google.com/a/](https://groups.google.com/a/)[continuum.io/d/msgid/bokeh/](http://continuum.io/d/msgid/bokeh/)8C27C454-A6C5-4604-AC8B-3E632D84EFC0%[40continuum.io](http://40continuum.io).

                  For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).


Sarah Bird
Developer, Bokeh

                    [ ![Continuum Analytics](http://docs.continuum.io/_static/img/ContinuumWordmark.png) ](http://continuum.io)

        You received this message because you are subscribed to the

Google Groups “Bokeh Discussion - Public” group.

        To unsubscribe from this group and stop receiving emails

from it, send an email to [email protected].

        To post to this group, send email to [email protected].

        To view this discussion on the web visit [](https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io)[https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io](https://groups.google.com/a/continuum.io/d/msgid/bokeh/276436a0-4139-4629-8e60-e72af71d357b%40continuum.io).

        For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).


Sarah Bird
Developer, Bokeh

          [ ![Continuum Analytics](http://docs.continuum.io/_static/img/ContinuumWordmark.png) ](http://continuum.io)

      You received this message because you are subscribed to a

topic in the Google Groups “Bokeh Discussion - Public” group.

      To unsubscribe from this topic, visit [](https://groups.google.com/a/continuum.io/d/topic/bokeh/vyNuJmNV5R0/unsubscribe)[https://groups.google.com/a/continuum.io/d/topic/bokeh/vyNuJmNV5R0/unsubscribe](https://groups.google.com/a/continuum.io/d/topic/bokeh/vyNuJmNV5R0/unsubscribe).

      To unsubscribe from this group and all its topics, send an

email to [email protected].

      To post to this group, send email to [email protected].

      To view this discussion on the web visit [](https://groups.google.com/a/continuum.io/d/msgid/bokeh/b6a9c813-c9a0-3568-5514-da7f9e627330%40continuum.io?utm_medium=email&utm_source=footer)[https://groups.google.com/a/continuum.io/d/msgid/bokeh/b6a9c813-c9a0-3568-5514-da7f9e627330%40continuum.io](https://groups.google.com/a/continuum.io/d/msgid/bokeh/b6a9c813-c9a0-3568-5514-da7f9e627330%40continuum.io).

      For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).

  You received this message because you are subscribed to the Google

Groups “Bokeh Discussion - Public” group.

  To unsubscribe from this group and stop receiving emails from it,

send an email to [email protected].

  To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/43836738-5FF4-4C16-ADBD-888804141F07%40gmail.com.

  For more options, visit [https://groups.google.com/a/continuum.io/d/optout](https://groups.google.com/a/continuum.io/d/optout).


Sarah Bird
Developer, Bokeh

    [
      ![Continuum Analytics](http://docs.continuum.io/_static/img/ContinuumWordmark.png)
    ](http://continuum.io)

You received this message because you are subscribed to a topic in the Google Groups “Bokeh Discussion - Public” group.

To unsubscribe from this topic, visit https://groups.google.com/a/continuum.io/d/topic/bokeh/vyNuJmNV5R0/unsubscribe.

To unsubscribe from this group and all its topics, send an email to [email protected].

To post to this group, send email to [email protected].

To view this discussion on the web visit https://groups.google.com/a/continuum.io/d/msgid/bokeh/8aac7bdd-6811-ce87-3174-45b75dc87253%40continuum.io.

For more options, visit https://groups.google.com/a/continuum.io/d/optout.