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
Trying to get around the module import error discussed in #185 using Ubuntu on the Windows Linux Subsytem. However, when I run python-jl I'm getting the error:
Traceback (most recent call last):
File "/home/mr_bo/.local/bin/python-jl", line 11, in <module>
sys.exit(main())
File "/home/mr_bo/.local/lib/python3.6/site-packages/julia/python_jl.py", line 117, in main
os.execvp(julia, [julia, "-e", script_jl, "--"] + unused_args)
File "/usr/lib/python3.6/os.py", line 559, in execvp
_execvpe(file, args)
File "/usr/lib/python3.6/os.py", line 603, in _execvpe
raise saved_exc.with_traceback(saved_tb)
File "/usr/lib/python3.6/os.py", line 594, in _execvpe
exec_func(fullname, *argrest)
PermissionError: [Errno 13] Permission denied
I'm really unclear about what's causing this. When I do ls -ls ~/src/julia-1.0.2/bin/julia I get 48 -rwxr-xr-x 1 mr_bo mr_bo 47296 Nov 8 16:16 /home/mr_bo/src/julia-1.0.2/bin/julia which leads me to believe everything should be fine? Should I change the user and the group to something else?
The text was updated successfully, but these errors were encountered:
Yep, it wasn't in my path, despite that importance being noted at the beginning of the README. Would it be sensible to add this to the "Troubleshooting" section of the README? I'll make a PR if you think it's helpful.
Did it work when you added julia to PATH? We've never tested it in WSL so that's a good news if so.
Would it be sensible to add this to the "Troubleshooting" section of the README?
I think it's already mentioned in Installation section. Generally I think it's better to have a better error message including some instructions. Sometimes you can't (e.g., when Python segfaults) but here we can catch the exception.
Trying to get around the module import error discussed in #185 using Ubuntu on the Windows Linux Subsytem. However, when I run
python-jl
I'm getting the error:I'm really unclear about what's causing this. When I do
ls -ls ~/src/julia-1.0.2/bin/julia
I get48 -rwxr-xr-x 1 mr_bo mr_bo 47296 Nov 8 16:16 /home/mr_bo/src/julia-1.0.2/bin/julia
which leads me to believe everything should be fine? Should I change the user and the group to something else?The text was updated successfully, but these errors were encountered: