Skip to content

Commit

Permalink
chore(docs): simply pip install ibis-framework instead of pre-install…
Browse files Browse the repository at this point in the history
…ing a bunch of requirements
  • Loading branch information
cpcloud committed Jan 17, 2025
1 parent aee8568 commit 5ca2e83
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/tutorials/browser/repl.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ penguins[^1] dataset loaded into the DuckDB backend!
from urllib.parse import urlencode
lines = """
%pip install numpy pandas tzdata duckdb pyarrow
import pathlib, js
from pathlib import Path, js
penguins_csv_url = "https://storage.googleapis.com/ibis-tutorial-data/penguins.csv"
pathlib.Path("penguins.csv").write_text(await (await js.fetch(penguins_csv_url)).text())
del pathlib, js, penguins_csv_url
Path("penguins.csv").write_text(await (await js.fetch(penguins_csv_url)).text())
del Path, js, penguins_csv_url
%clear
%pip install 'ibis-framework[duckdb]'
from ibis.interactive import *
Expand Down

0 comments on commit 5ca2e83

Please sign in to comment.