-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Testing out external scripts #99
Conversation
First pass at trying to use conda run instead of the typical python interpreter. Somewhat successful: ploomber.exceptions.TaskBuildError: Error building task 'divergence': the task ran successfully but the product File('vector.png') is missing. Ensure your code is generating it. ploomber.exceptions.TaskBuildError: Exception when running on_finish for task 'divergence'
From the 89b8c5e commit log:
@rmshkv it looks like it is creating |
Perhaps I need a complete path here? |
I don't think so -- the problem is that ploomber is running your script in |
I dug into this a little and it seems like by default local_execution is set to false for both notebooks and scripts, so I wouldn't expect the output to be saved in the nblibrary directory at first glance. When I run it myself with the current configuration I get environment errors, so not able to test myself without doing some more work on that functionality first. |
Testing out calls to external scripts here.