MIT-Scheme Window for SublimeREPL

Getting error WindowsError(2, 'The system cannot find the file specified.')

I tried tinkering with the Main.sublime menu, but it’s not clear which path I should put, so I used variations C:\Program Files (x86)\MIT-GNU Scheme\bin\mit-scheme.exe, including without mit-scheme.exeand using " \\\" (double) instead of just " \" (since it was taken sublime, which was what I used to edit the file), and I also don’t know at what point in the Main.sublime menu I should change.

I read similar solutions, but they are usually found on a Mac, where you can easily enter the schema to the console to get the path to the schema file, so I think this is because I don't know how the path to the file is right or what something else? Any ideas?

+4
source share
1 answer

Add these two env variables to your computer:

MITSCHEME_BIN_PATH = C: \ Program Files (x86) \ MIT-GNU Scheme \ bin MITSCHEME_BIN_PATH = C: \ Program Files (x86) \ MIT-GNU Scheme \ lib

Configure this Main.sublime-menu file as follows:

enter image description here

Then it should work. Enjoy it!

0
source

Source: https://habr.com/ru/post/1529652/


All Articles