Richard Stanton <rhstan...@berkeley.edu> writes:
> I currently load org using straight.el as follows:
> ...
> (use-package org-contrib
>   :after org
> ...
> (use-package org
>   :after (jupyter)

I suspect that something else is pulling built-in org version before
jupyter gets loaded. To make sure that the straight version of Org mode
is loaded, I recommend putting the following at the beginning of your
init.el:

(straight-use-package '(org :type git :repo 
"https://code.orgmode.org/bzg/org-mode.git";))
(straight-use-package '(org-contrib :type git :repo 
"https://git.sr.ht/~bzg/org-contrib";))

To debug similar issues, you might set use-package-verbose to t at the
beginning of your init.el and examine the *Messages* buffer after
startup.

Best,
Ihor

Reply via email to