-
Notifications
You must be signed in to change notification settings - Fork 294
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
Notebooks exported from py files have incorrect working directory #3656
Comments
Looks like it just might be the Right click context menu items that have this issue? |
yeah I was using the context menu. |
Yeah, I ran into it. Got a fix out now, looks like the new context menu commands didn't have the %cd code in them. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Run a cell that loads data from somewhere, and make sure it runs fine
import pandas as pd # pandas is a dataframe library
df = pd.read_csv("./data/pima-data.csv") # load Pima data
df.head(5)
run command "Export the current file and output as Jupyter Notebooks", and then click on "Open in browser" once it's finished.
Expected: the notebook runs fine.
Actual: the notebook isn't able to load the data file.
The text was updated successfully, but these errors were encountered: