This message was deleted.
# ask-anything
s
This message was deleted.
e
this sounds like jupyter is using another environment than what
ploomber build
uses. my recommendation: open a notebook and execute:
import sys; print(sys.executable)
, then open a terminal but instead executing
ploomber build
, run
import sys; print(sys.executable)
. do these match? my guess it that you'll get two different values. let me know so i can help you troubleshoot this
g
you are right they both show different environment path. not sure why that is. I start my jupyter lab session from within my virtual environment.
resolved it. needed to install jupyter lab in virtual environment.
👏 1
e
nice! that same issue has caught me many times 😂 glad you got it working!