From 69316df6d62caeff926711589be532b993da3dfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Crist=C3=B3v=C3=A3o=20Duarte=20Sousa?= Date: Sat, 10 Feb 2024 18:43:04 +0000 Subject: [PATCH] Update faq.md with example on running JuliaCall inside Blender --- docs/src/faq.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/src/faq.md b/docs/src/faq.md index 71489875..981aa1ed 100644 --- a/docs/src/faq.md +++ b/docs/src/faq.md @@ -81,4 +81,6 @@ Related issues: [#255](https://github.com/JuliaPy/PythonCall.jl/issues/255) ## Can I use JuliaCall to run Julia inside applications with embedded Python? -Yes, it may be possible. See an example of how to have Julia running inside the Python that is running inside Blender here https://discourse.julialang.org/t/running-julia-inside-blender-through-vscode-using-pythoncall-juliacall/96838. +Yes, it may be possible. A good example of that is having Julia running inside the Python that is running inside Blender, as presented in [this Discourse post](https://discourse.julialang.org/t/running-julia-inside-blender-through-vscode-using-pythoncall-juliacall/96838/6). +From the point that one has JuliaCall running inside Python, if it has access to the terminal, one can even launch a Julia REPL there, and if needed connect with VSCode Julia extension to it. +The full Python script to install, launch JuliaCall, and launch a Julia REPL in Blender is [here](https://gist.github.com/cdsousa/d820d27174238c0d48e5252355584172).