Skip to content

Commit

Permalink
Put pip install before config notebook
Browse files Browse the repository at this point in the history
  • Loading branch information
dbbnicole committed May 4, 2023
1 parent 58102b3 commit 6dcdfb1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions 03_visual_analytics1.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@

# COMMAND ----------

# MAGIC %run ./config/notebook_config
# DBTITLE 1,Install graphistry
# MAGIC %pip install graphistry==0.28.7

# COMMAND ----------

dbutils.widgets.dropdown("date_filter", "2021-10-22", ["2021-10-22", "2021-12-03"])
dbutils.widgets.dropdown("color_threat_intel", "yes", ["yes", "no"])
# MAGIC %run ./config/notebook_config

# COMMAND ----------

# DBTITLE 1,Install graphistry
# MAGIC %pip install graphistry==0.28.7
dbutils.widgets.dropdown("date_filter", "2021-10-22", ["2021-10-22", "2021-12-03"])
dbutils.widgets.dropdown("color_threat_intel", "yes", ["yes", "no"])

# COMMAND ----------

Expand Down

0 comments on commit 6dcdfb1

Please sign in to comment.