简体   繁体   中英

I use Colab and Plotly and I want save a Plotly figure - how to install plotly-orca in Colab?

I get the error message below.

If you haven't installed orca yet, you can do so using conda as follows:

$ conda install -c plotly plotly-orca

Alternatively, see other installation methods in the orca project README at https://github.com/plotly/orca .

I tried: !pip install plotly-orca , but that throws an error.

Collecting plotly-orca Could not find a version that satisfies the requirement plotly-orca (from versions: ) No matching distribution found for plotly-orca

What I want to do:

  • Save a Plotly figure locally in Google Drive

To save an iplotly graph as html to gdrive

# Connecting to GDrive
from google.colab import drive
drive.mount('/content/gdrive')

from plotly.offline import iplot, plot, download_plotlyjs, init_notebook_mode
import plotly.graph_objs as go


Tickets_plot = go.Figure( ..... whatever is normally for your Plotly graph ....)

# this saves it to Google Drive ...you can put it in any folder you like
plot(Tickets_plot, filename="/content/drive/test.html", auto_open=False)

# this saves it within the notebook folder locallhy
plot(Tickets_plot, filename="/content/drive/test.html", auto_open=False)

I used this:

!pip install plotly==4.4.1
!wget https://github.com/plotly/orca/releases/download/v1.2.1/orca-1.2.1-x86_64.AppImage -O /usr/local/bin/orca
!chmod +x /usr/local/bin/orca

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM