Sublime Text 3, SublimeREPL and CLISP
You may get the following file not found error when attempting to combine CLISP (I installed via MacPorts, but I'm guessing this works the same for homebrew...) with SublimeREPL in Sublime Text 3 on OSX.
FileNotFoundError(2, "No such file or directory: 'clisp'")
Essentially, you need to tell SublimeREPL where to find the CLISP binaries. Simply add the following line to your SublimeREPL user configuration file (Sublime Text->Preferences->Package Settings->SublimeREPL->Settings - User)
"default_extend_env": {"PATH": "{PATH}:/opt/local/bin"}
Comments