Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Edward Bryan Kene Morales
7,374 PointsError 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
19,579 PointsHey Edward,
You need to import specific compass items, such as:
@import "compass/css";
@import "compass/utilities";
Hope this helps.
Edward Bryan Kene Morales
7,374 PointsEdward Bryan Kene Morales
7,374 PointsThanks 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
19,579 PointsWayne Priestley
19,579 PointsSorry to hear that Edward, thanks for the heads up on only needing to import just compass to get everything though.
Edward Bryan Kene Morales
7,374 PointsEdward Bryan Kene Morales
7,374 PointsNo problem Wayne. I already emailed the author of the app and hopefully they have some workarounds for me.