Export button missing
The export button to save a python dataframe from a notebook to local machine is not showing any more. Is there a way to reconfigure this?
Operating system used: Windows 10
Answers
-
Sarina Dataiker, Dataiku DSS Core Designer, Dataiku DSS Adv Designer, Registered Posts: 317 Dataiker
Hi @AJalil
,
It's possible that the dataframe is too large to export in-memory, which is one possible cause for not seeing the "Export this dataframe" button.
You can see more information if you open up your console developer tools and then attempt to view your dataframe. You'll see in your browser console some useful information starting with "Checking dataframe exportability". You will likely see some information after this line that tells you more about why the export is not possible. Feel free to attach the output if you need any help interpreting it.
Thanks,
Sarina -
Also have this issue - has there been any resolution beyond the post above? I've tried adding the requests package to the kernel as this has resolved a similar issue in the past but to no avail. Any guidance here would be much appreciated.
Best,
Willem
-
Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 2,112 Neuron
This is because the Jupyter extension is no longer enabled by default. You can enable it yourself:
[DSS_DATA_DIR]/bin/dssadmin jupyter-nbextensions enable export_embedded/main
https://doc.dataiku.com/dss/latest/notebooks/jupyter-nbextensions.html#installing-jupyter-extensions
-
This worked - thank you!