# missing Q(kdb+) kernel

**URL:** https://forum.kx.com/t/missing-q-kdb-kernel/14197
**Category:** Academy Support
**Tags:** imported
**Created:** [April 18, 2025, 12:54am UTC](https://forum.kx.com/t/missing-q-kdb-kernel/14197 "2025-04-18T00:54:51Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Prashant](https://avatars.discourse-cdn.com/v4/letter/p/51bf81/32.png) [@Prashant](https://forum.kx.com/u/Prashant)
#### Post date: [April 18, 2025, 12:54am UTC](https://forum.kx.com/t/missing-q-kdb-kernel/14197/1 "2025-04-18T00:54:51Z")

</div>

[https://learninghub.kx.com/forums/topic/missing-qkdb-kernel](https://learninghub.kx.com/forums/topic/missing-qkdb-kernel)

Unable to change kernel Q(kdb+).&nbsp; Only option is Python 3 (ipykernel)

---

<div class="post-metadata">

### Author: ![rocuinneagain](https://sea2.discourse-cdn.com/flex002/user_avatar/forum.kx.com/rocuinneagain/32/287_2.png) [@rocuinneagain](https://forum.kx.com/u/rocuinneagain)
#### Post date: [April 18, 2025, 9:04am UTC](https://forum.kx.com/t/missing-q-kdb-kernel/14197/2 "2025-04-18T09:04:04Z")

</div>

An upgrade removed JupyterQ/embedpy as PyKX can be [configured to replace it now](https://code.kx.com/pykx/3.0/examples/jupyter-integration.html#q-first-mode).

If you ‘git pull’ the project, or reopen the sandbox link from the course page, it should resolve its-self. The problem may be that the upstream changes can no longer be merged into your local copy so may need some manual intervention. A quick fix would be to move the existing course project (with your existing work) to the side by renaming it and then refetch the project with the sandbox linky as usual.

On a related note, for your own notebooks, select ‘Python 3 (ipykernel)’ as your kernel make the first cell contain:

```
#;.pykx.disableJupyter()
```

The second cell contain:

```
# https://code.kx.com/pykx/3.0/examples/jupyter-integration.html#q-first-mode
import pykx as kx
kx.util.jupyter_qfirst_enable()
```

Then it should behave just like the previous JupyterQ/embedpy kernel.
