Slackbot
08/11/2022, 11:58 AMBrandon Williams
08/11/2022, 12:09 PMNikhil Reddy
08/11/2022, 12:10 PMBrandon Williams
08/11/2022, 12:13 PMafter installing jupyter hubwhat exactly do you mean by this? Jupyterhub is likely not running on your local machine, so would be a different environment than running from "jupyter notebook"
Nikhil Reddy
08/11/2022, 12:14 PMNikhil Reddy
08/11/2022, 12:15 PMBrandon Williams
08/11/2022, 12:16 PMPATH
and PYTHONPATH
, etc.Ido (Ploomber)
Nikhil Reddy
08/11/2022, 1:37 PMNikhil Reddy
08/11/2022, 1:37 PMEduardo
! python -c 'import sys;print(sys.executable)'
and in a Python cell:
import sys
print(sys.executable)
btw, you can also use the Python API to build your pipeline, it has nicer output:
from ploomber.spec import DAGSpec
dag = DAGSpec('path/to/pipeline.yaml').to_dag()
dag.build(force=True)
Nikhil Reddy
08/13/2022, 4:40 PMNikhil Reddy
08/13/2022, 4:41 PMEduardo
debug=later
, awesome! let me know what you thinkEduardo
Nikhil Reddy
08/14/2022, 5:16 AM