Jerry Yang
Jerry Yang
> Which keys? | Action > -- | -- > `Shift+Enter` | Run cell > `Ctrl+Enter` | Run cell if the code changed and add a new cell below Hi,...
I also encountered this problem today, almost the exact same error message as @sairus7 . At first I used `create_sysimage` it crashed in a very similar way, so I chose...
Oh, things seem to crash in the same way with fixed absolute path... Any other operations needed before building the app? And I wonder if this is the right absolute...
Thanks, but this error was thrown when building the pkgs in my project environment ``` (Demo) pkg> build Building GR ────→ `C:\Users\JerryYang\.julia\scratchspaces\44cfe95a-1eb2-52ea-b672-e2afdf69b78f\af237c08bda486b74318c8070adb96efa6952530\build.log` Building Conda ─→ `C:\Users\JerryYang\.julia\scratchspaces\44cfe95a-1eb2-52ea-b672-e2afdf69b78f\6e47d11ea2776bc5627421d59cdcc1296c058071\build.log` Building PyCall → `C:\Users\JerryYang\.julia\scratchspaces\44cfe95a-1eb2-52ea-b672-e2afdf69b78f\1fc929f47d7c151c839c5fc1375929766fb8edcc\build.log`...
Sorry, is this solution works for you? And that may be my problem...
Great, but problem is that the path actually should not be `nothing`, and after I commented that line pkgs could be built without error (in the `Demo` environment)
I confirmed that the error was caused by that line of code. after commenting that line: ``` (Demo) pkg> build Building GR ────→ `C:\Users\JerryYang\.julia\scratchspaces\44cfe95a-1eb2-52ea-b672-e2afdf69b78f\af237c08bda486b74318c8070adb96efa6952530\build.log` Building Conda ─→ `C:\Users\JerryYang\.julia\scratchspaces\44cfe95a-1eb2-52ea-b672-e2afdf69b78f\6e47d11ea2776bc5627421d59cdcc1296c058071\build.log` Building PyCall...
I got the correct build result after replace `libpython` with `libpy_name` like this, which is really strange to assign a pointer type with string value. ```julia libpython = relpath.(libpy_name, @__DIR__)...
Hi, I was wrong in the last comment. I stuck here when replaced both `libpython` with `libpy_name`, but encountered an error when loading directory in `startup.jl`. ```julia julia> import Pkg;...
> it runs through tests and compilation stages, but trying to run the app gives the same error as in the first message. It actually did not run through tests,...