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
I am receiving this error but I am unsure what a "fully-functional Julia REPL" is.
Contents of startup.jl
using Infiltrator
using Revise
Contents of basic.jl
#!/usr/bin/env -S julia --color=yes --startup-file=yes -ifunctionadd_two(x)
Main.@infiltrate
x +2endadd_two(2)
From the command line I run ./basic.jl, but I receive the error Infiltrator.jl needs a fully-functional Julia REPL.. Is the Julia REPL running in a shell terminal not "fully functional"? Would you mind clarifying what the error message is intending to convey, or what is incorrect in my setup?
The text was updated successfully, but these errors were encountered:
The issue here is that -i does not start the REPL before running the code in basic.jl (or that given in -e, if applicable). Infiltrator needs all REPL setup to be completed to be functional though. The solution here is to start a REPL and then include() your file manually.
I am receiving this error but I am unsure what a "fully-functional Julia REPL" is.
Contents of startup.jl
Contents of basic.jl
From the command line I run
./basic.jl
, but I receive the errorInfiltrator.jl needs a fully-functional Julia REPL.
. Is the Julia REPL running in a shell terminal not "fully functional"? Would you mind clarifying what the error message is intending to convey, or what is incorrect in my setup?The text was updated successfully, but these errors were encountered: