-
Notifications
You must be signed in to change notification settings - Fork 22
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
jupyter notebook run error #5
Comments
i'm a beginner to jupyter notebooks and data science, numpy... """import numpy as np and it showed me this error: NameError Traceback (most recent call last) ~\numpy.py in NameError: name 'null' is not defined please help |
trying to edit the metedata doesn't work either |
@noahgift -- great contribution! This is definitely handy. I encountered one minor issue when running the jupyter notebook. Immediately after cloning the repo, the 'execution count' is not set - and when a user tries to run the notebook they get a popup window with this message:
For users who just want to test this quickly - the manual fix is to open the
/notebooks/spot_pricing_ml.ipynb
file in pycharm, manually set each cell to Markdown, then in jupyter notebook selectRestart & Run All
from the Kernel menu. Once that is done, still inside the juptyer notebook, the user changes each cell from Markdown to Code, and repeats theRestart & Run All
command - everything works great.I don't have write access to this repo, but in pycharm I was able to change the cell metadata
"execution_count": null,
to"execution_count": 1,
in theFind All
window. Opening the file directly in PyCharm just displayed the code in the cells, not the cell metadata which is what should be changed.The text was updated successfully, but these errors were encountered: