# Missing Export Notebook As

**URL:** https://discourse.jupyter.org/t/missing-export-notebook-as/6170
**Category:** JupyterLab
**Created:** [September 29, 2020, 8:03pm UTC](https://discourse.jupyter.org/t/missing-export-notebook-as/6170 "2020-09-29T20:03:50Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![gideonsimpson](https://yyz1.discourse-cdn.com/flex031/user_avatar/discourse.jupyter.org/gideonsimpson/32/462_2.png) [@gideonsimpson](https://discourse.jupyter.org/u/gideonsimpson)
#### Post date: [September 29, 2020, 8:03pm UTC](https://discourse.jupyter.org/t/missing-export-notebook-as/6170/1 "2020-09-29T20:03:50Z")

</div>

Not sure what happened, but `Export Notebook As` has diseappeared from the File menu in my jupyter-lab installation. This is a conda installation, and I have done recent updates. I’m not sure how to either troubleshoot or restore the item.

---

<div class="post-metadata">

### Author: ![Rabeez](https://yyz1.discourse-cdn.com/flex031/user_avatar/discourse.jupyter.org/rabeez/32/3227_2.png) [@Rabeez](https://discourse.jupyter.org/u/Rabeez)
#### Post date: [December 8, 2020, 4:43pm UTC](https://discourse.jupyter.org/t/missing-export-notebook-as/6170/2 "2020-12-08T16:43:00Z")

</div>

Same for me. This is my base environment and I haven’t updated any jupyter related packages in a while. Don’t remember when this option vanished but I’ve used it in the past.

This is my setup

> Python implementation: CPython  
> Python version : 3.7.9  
> IPython version : 7.19.0

 ![image](https://canada1.discourse-cdn.com/flex031/uploads/jupyter/original/2X/8/87f6c1bb64ae1d22136b99c92bf72ba402471fd1.png)

---

<div class="post-metadata">

### Author: ![fomightez](https://yyz1.discourse-cdn.com/flex031/user_avatar/discourse.jupyter.org/fomightez/32/495_2.png) [@fomightez](https://discourse.jupyter.org/u/fomightez)
#### Post date: [December 8, 2020, 8:07pm UTC](https://discourse.jupyter.org/t/missing-export-notebook-as/6170/3 "2020-12-08T20:07:06Z")

</div>

It’s not quite the same situation, but I wonder if trying the solution at the end of the post [here](https://github.com/jupyterlab/jupyterlab/issues/8028) may help?

Earlier in that post is a question of whether going to the classic notebook mode via `Help` \> `Launch Classic Notebook` and then use `Download as` from the `File` menu in classic mode will work for you at all? And if it works, is that sufficient for your needs?

---

<div class="post-metadata">

### Author: ![wytr](https://avatars.discourse-cdn.com/v4/letter/w/c57346/32.png) [@wytr](https://discourse.jupyter.org/u/wytr)
#### Post date: [February 11, 2021, 2:35pm UTC](https://discourse.jupyter.org/t/missing-export-notebook-as/6170/4 "2021-02-11T14:35:16Z")

</div>

Got the same issue over here with my yunohost installation of jupyterlab. I too used this option before and set it up by installing nbconvert and all the neccessary packets. Out of nowhere the option to “Export Notebook As…” vanished from the File menu. Anyone got a solution for this? Even reinstalling jupyterlab didnt help.

---

<div class="post-metadata">

### Author: ![wytr](https://avatars.discourse-cdn.com/v4/letter/w/c57346/32.png) [@wytr](https://discourse.jupyter.org/u/wytr)
#### Post date: [February 11, 2021, 2:36pm UTC](https://discourse.jupyter.org/t/missing-export-notebook-as/6170/5 "2021-02-11T14:36:42Z")

</div>

ps. nbconvert still werks, tested it by running a conversion from the terminal. weird stuff…

---

<div class="post-metadata">

### Author: ![yasirroni](https://yyz1.discourse-cdn.com/flex031/user_avatar/discourse.jupyter.org/yasirroni/32/4653_2.png) [@yasirroni](https://discourse.jupyter.org/u/yasirroni)
#### Post date: [June 22, 2021, 12:59am UTC](https://discourse.jupyter.org/t/missing-export-notebook-as/6170/6 "2021-06-22T00:59:24Z")

</div>

Funny enough, the solution is just to refresh the page. That works on me. Found the solution from [here](https://github.com/LibreTexts/metalc/issues/59#issuecomment-535757497)

---

<div class="post-metadata">

### Author: ![Mihemmed\_Cewanmerdi](https://yyz1.discourse-cdn.com/flex031/user_avatar/discourse.jupyter.org/mihemmed_cewanmerdi/32/2960_2.png) [@Mihemmed\_Cewanmerdi](https://discourse.jupyter.org/u/Mihemmed_Cewanmerdi)
#### Post date: [September 27, 2021, 9:16am UTC](https://discourse.jupyter.org/t/missing-export-notebook-as/6170/7 "2021-09-27T09:16:17Z")

</div>

You can use

> pip uninstall nbconvert

and then

> pip install nbconvert

It worked for me!

---

<div class="post-metadata">

### Author: ![jrudoler](https://yyz1.discourse-cdn.com/flex031/user_avatar/discourse.jupyter.org/jrudoler/32/5474_2.png) [@jrudoler](https://discourse.jupyter.org/u/jrudoler)
#### Post date: [November 10, 2021, 3:11am UTC](https://discourse.jupyter.org/t/missing-export-notebook-as/6170/8 "2021-11-10T03:11:53Z")

</div>

This happened to me due to some pip / home-brew file path conflicts. The following fixed it:

```auto
brew install jupyter
brew link --overwrite jupyterlab

```
