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 Sass Basics (retired) Getting Started with Sass Installing and Using Sass

Errno::ENOENT: No such file or directory - test.scss Use --trace for backtrace.

I keep getting this when testing I am saving this on my usb flash drive in a site folder inside of a rootweb folder??

I was having a similar problem and ended up watching Console Foundations which helped me solve this problem. You have to specify which directory you want to look in for the document. I had saved my test.scss to the desktop for easy access, I navigated to the desktop using the console commands. <br> '''Errno::ENOENT: No such file or directory - test.scss Use --trace for backtrace.

Lenes-iMac:~ lenelight$ ls

Applications Downloads Music

Desktop Library Pictures

Documents Movies Public

Lenes-iMac:~ lenelight$ cd Desktop

Lenes-iMac:Desktop lenelight$ sass test.scss

Lenes-iMac:Desktop lenelight$ sass test.scss

p { background: blue; }

Lenes-iMac:Desktop lenelight$ '''

ls = list

cd = change directory

<br> This video explains more complex directory navigation, which it looks like you may need.

Good luck!!