-
The current behavior is that if I run a source code block in org babel python |
Beta Was this translation helpful? Give feedback.
Answered by
fnussbaum
Dec 13, 2024
Replies: 1 comment
-
By default, the babel blocks run synchronously. The following should run asynchronously: #+begin_src python :session :async
import time
time.sleep(5)
42
#+end_src |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Geegee
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By default, the babel blocks run synchronously. The following should run asynchronously: