Problem: Minim library + Processing 3 + SublimeText

Hello!

I'm using this package for sublime text https://github.com/b-g/processing-sublime. I'm also trying to use the Minim library for some audio reactive sketches. I installed it correctly and everything works in the Processing IDE but when I try to use everything with Sublime Text, I get an error saying: "No library found for dff.minim Libraries must be installed in a folder named 'libraries' inside the 'sketchbook' folder. build1.pde:0:0:0:0: The package “dff” does not exist. You might be missing a library. [Finished in 1.4s with exit code 1]"

I tried copying the library manually into my sketch folder but it still doesn't work and I don't really know what else to do to be able to continue developing using Sublime Text. Thanks in advance.

Answers

  • Answer ✓

    problem was just a simple typo...

    instead of import.ddf.minim.*; i typed import.dff.minim.*; :-B

Sign In or Register to comment.