Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试做
sass input src.scss test.css
或者
sass input src.scss:test.css Both results in error:: Errno::ENONET:No such file or directory @ rb_sysopen - input
这是我的第一个 css 到 css 编译
您需要传递一个真实创建的文件:
# cd my_path_with_file sass example.scss example.css
或者您可以使用文件的绝对路径:
# output file will be saved in current directory sass my_path/example.scss example.css
祝你好运。