You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://www.repostatus.org/#active)
Copy file name to clipboardExpand all lines: docs/src/faq.md
+3-12Lines changed: 3 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,17 +18,6 @@ Some rules if you are writing multithreaded code:
18
18
19
19
Related issues: [#201](https://github.com/JuliaPy/PythonCall.jl/issues/201), [#202](https://github.com/JuliaPy/PythonCall.jl/issues/202)
20
20
21
-
## Does it work on Apple silicon (ARM, M1, M2, ...)?
22
-
23
-
Maybe. Your mileage may vary.
24
-
25
-
In general, PythonCall and JuliaCall are only supported on platforms with
26
-
[Tier 1](https://julialang.org/downloads/#supported_platforms) level of support by Julia.
27
-
Currently, Apple silicon is Tier 2, so is not supported.
28
-
29
-
Due to time constraints, issues affecting only unsupported platforms will not be
30
-
investigated. It is much more likely to be an issue with Julia itself than PythonCall.
31
-
32
21
## Issues when Numpy arrays are expected
33
22
34
23
When a Julia array is passed to Python, it is wrapped as a [`ArrayValue`](#juliacall.ArrayValue).
@@ -92,4 +81,6 @@ Related issues: [#255](https://github.com/JuliaPy/PythonCall.jl/issues/255)
92
81
93
82
## Can I use JuliaCall to run Julia inside applications with embedded Python?
94
83
95
-
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.
84
+
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).
85
+
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.
86
+
The full Python script to install, launch JuliaCall, and launch a Julia REPL in Blender is [here](https://gist.github.com/cdsousa/d820d27174238c0d48e5252355584172).
0 commit comments