Skip to content

Commit

Permalink
feat: try except naas_data_product
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentLvr committed Feb 10, 2023
1 parent 12cd632 commit 0d623aa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion models/__pipeline__.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,11 @@
},
"outputs": [],
"source": [
"from naas_data_product import *\n",
"try:\n",
" from naas_data_product import *\n",
"except:\n",
" !pip install naas_data_product --user\n",
" from naas_data_product import *\n",
"from naas.pipeline import Pipeline, NotebookStep, End"
]
},
Expand Down

0 comments on commit 0d623aa

Please sign in to comment.