Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS

Edward Bryan Kene Morales
Edward Bryan Kene Morales
7,374 Points

Error Importing Compass Mixin Library

Hi guys anyone using the compass app here?

So I am using the compass app to compile sass. And so far so good. However whenver I import compass mixin via

@import "compass";

I am getting an error

/*

Errno::ESRCH: No such process - No message available

*/

I really don't know why this is happening. Any thoughts?

1 Answer

Wayne Priestley
Wayne Priestley
19,579 Points

Hey Edward,

You need to import specific compass items, such as:

@import "compass/css";
@import "compass/utilities";

Hope this helps.

Edward Bryan Kene Morales
Edward Bryan Kene Morales
7,374 Points

Thanks Wayne! I also tried loading specific folders like this one but it doesn't work as well. Actually I was going through the documentation in compass-style.org and it stated there that everything can be imported via

@import "compass";

I guess there's something wrong with compass app's newest release in Windows machines. I read from their github page about the same issue. Sigh. Everything else works fine. Susy works fine but not compass.

Wayne Priestley
Wayne Priestley
19,579 Points

Sorry to hear that Edward, thanks for the heads up on only needing to import just compass to get everything though.

Edward Bryan Kene Morales
Edward Bryan Kene Morales
7,374 Points

No problem Wayne. I already emailed the author of the app and hopefully they have some workarounds for me.