Since this change which was included in 3.14, scel is not built by default anymore.
In order to fix it you either need to rebuild SuperCollider as explained in the docs.
Or simply add scel to your sclang_conf.yaml:
- Find where
sclang_conf.yaml is located: run sclang and evaluate Platform.userConfigDir.
You will get something like ~/.config/SuperCollider.
Search for sclang_conf.yaml there.
- Add path to the directory containing scel.quark to
includePaths:
It should look something like this:
includePaths:
- /home/tatrix/.local/share/SuperCollider/downloaded-quarks/wslib
- /home/tatrix/.emacs.d/scel
excludePaths:
[]
postInlineWarnings: false
excludeDefaultPaths: false
And that's it! Restart scel for example by calling (sclang-start) or and it should start working again.
Since this change which was included in 3.14,
scelis not built by default anymore.In order to fix it you either need to rebuild SuperCollider as explained in the docs.
Or simply add
scelto yoursclang_conf.yaml:sclang_conf.yamlis located: runsclangand evaluatePlatform.userConfigDir.You will get something like
~/.config/SuperCollider.Search for
sclang_conf.yamlthere.includePaths:It should look something like this:
And that's it! Restart
scelfor example by calling(sclang-start)or and it should start working again.