Hello
Is there a possibility to convert a file.py into a file.ipynb in Jupyterlab?
I’ve tried to open the .py file and then save as .ipynb file but I get an error message.
There should be an efficient way to transform a file from one format to the other one.
Thank you
In a notebook, do the following in a cell:
%pip install jupytext
!jupytext --to notebook <name_of_script_file>.py
Replacing <name_of_script_file>
with name of your Python script. You may need to specify the path if your working directory in the notebook and where the script is aren’t the same.
Or you could use the terminal to run jupytext if you comfortable. The magic install though insures it will work in whatever environment that notebook happened to be running in.
See here for more about Jupytext use.
There’s also the use of the %load
command that may do what you require?
See here and here.
You most likely aren’t working in the correct directory in your notebook.
Note that I said this in my post:
You are using JupyterLab it appears. The file navigation panel on the left and the running notebook are not linked; just because you are looking at the target notebook you wish to convert in the panel on the left, doesn’t mean that is in the current working directory in your active notebook on the right. To check the current working directory in your active notebook, type the following in a cell in it and run it:
pwd
(By the way, that means ‘print working directory’. See my links and notes here if these concepts aren’t familiar to you.)
I suspect you’ll see it doesn’t match your location for the notebook you are trying to point Jupytext at for conversion. The way you have written your !jupytext
command, it isn’t going to work until you can enter the following in the notebook cell and see the notebook you are hoping to convert among the list of files in the current working directory:
ls
So one solution is to specify the absolute path to that notebook in your !jupytext
command. Right now you are relying on a relative path, in this case where the notebook file and the running notebook are expected to be in the same directory relative to each other.
Another possible solution is to close the notebook you currently show because jupytext is installed. And just start a new one from the launcher after you have navigated in the file navigation panel to the directory containing the target notebook you wish to convert. You should then see the new notebook get created in the same directory as the notebook you are targeting for conversion and now your !jupytext
command.
I’ll add for the sake of improved completeness, that within the active notebook, it is also possible to change the working directory, see about the line magic command %cd
here. You’d need to navigate relative or use an absolute path, as well.
Another possibility is to navigate to the directory with the notebook in the terminal launched from JupyterLab, and then run your jupytext
command, but now without the exclamation mark as you are directly on the command line already.
Thank you for your reply.
I still don’t get it. I’ve converted the file “Beta.py” into “Beta.ipynb”.
But when I open it I get only HTML code.
thanks
It would have liked to see what had happened if you ran !head DIGA/Beta.ipynb
after the first time you ran it in cell #1 of what you posted. You’ll note there is a difference in cell #2 in the information Jupytext gives after the same command.
I think you are seeing stuff from OneDrive being in play here. Take that out of the equation unless you follow how to get the actual file.
I can give you a way to do that. Go here and click launch binder
. I have jupytext already installed there. After the session spins up, click on Jupyter logo in the upper left to go to the dashboard, and then upload your .py
file to the secure, temporary remote session. The Upload
button is on the right in the dashboard. Once it is uploaded, run your conversion command in a new notebook in that session, pointing it at your script file. Then open the notebook produced there. You should see a notebook.
How to check it now, i have run it successfully
How to check what now? Do you mean you ran the conversion successfully?
Or you did it on the remote system I mention in my post from July 2021? If so, you download the converted Jupyter .ipynb
file to use in Jupyter later.
Worked for me perfectly.
However, I wanted all the Mardowns to remain as it it (they seem to have become comments…
What specifically worked perfectly? I ask for two reasons. 1. The later discussion sort of veered off from the initial topic. 2. You say, “I wanted all the Mardowns to remain as it it (they seem to have become comments…”. The initial topic was discussing converting a Python script with a .py
extension into a Jupyter Notebook format with a .ipynb
extension. There wouldn’t be markdown in a typical Python script. And so I’m confused.
If I just had seen that statement elsewhere, possibly in a different topic, I would proffer that what Jupytext does can be done in other, custom ways using nbformat
.
If you describe better what you are trying to do, we can probably find, or work towards, something that executes a conversion in the exact manner you like. It may not be an ‘out-of-the-box’ solution like Jupytext, but something more custom. If it is heading that way, then I’d most likely need short examples of what you are trying to do. They don’t have to be with any real code or anything. Toy examples that adhere close to your starting point would be sufficient. I know we aren’t there yet, but mentioning it now so you can start thinking along those lines.