Skip to content

Commit

Permalink
move pip installs to databricks utilities
Browse files Browse the repository at this point in the history
  • Loading branch information
imatiach-msft committed Jun 7, 2023
1 parent fdb4643 commit 41ced8d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,11 @@ object DatabricksUtilities {
Map("pypi" -> Map("package" -> "onnxmltools==1.7.0")),
Map("pypi" -> Map("package" -> "lightgbm")),
Map("pypi" -> Map("package" -> "mlflow")),
Map("pypi" -> Map("package" -> "openai"))
Map("pypi" -> Map("package" -> "openai")),
Map("pypi" -> Map("package" -> "raiwidgets")),
Map("pypi" -> Map("package" -> "itsdangerous==2.0.1")),
Map("pypi" -> Map("package" -> "hyperopt")),
Map("pypi" -> Map("package" -> "scikit-learn"))
).toJson.compactPrint

// TODO: install synapse.ml.dl wheel package here
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
"metadata": {},
"outputs": [],
"source": [
"%pip install hyperopt\n",
"%pip install scikit-learn"
"# %pip install hyperopt\n",
"# %pip install scikit-learn"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,9 @@
},
"outputs": [],
"source": [
"%pip install raiwidgets\n",
"%pip install itsdangerous==2.0.1\n",
"%pip install interpret-community\n",
"%pip install --force-reinstall protobuf"
"# %pip install raiwidgets\n",
"# %pip install itsdangerous==2.0.1\n",
"# %pip install interpret-community"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,9 @@
},
"outputs": [],
"source": [
"%pip install raiwidgets\n",
"%pip install itsdangerous==2.0.1\n",
"%pip install interpret-community\n",
"%pip install --force-reinstall protobuf"
"# %pip install raiwidgets\n",
"# %pip install itsdangerous==2.0.1\n",
"# %pip install interpret-community"
]
},
{
Expand Down

0 comments on commit 41ced8d

Please sign in to comment.