I'm facing difficulties while trying to install Dart Sass on my Fedora 37 system. Despite following the official instructions and watching several tutorials, I keep encountering an error.
According to the official Sass website:
You can install Sass on Windows, Mac, or Linux by downloading the package for your operating system from GitHub and adding it to your PATH. There are no external dependencies or additional installations required.
I meticulously followed the installation steps:
- Downloaded the appropriate Dart Sass archive for my Fedora 37 system, which was dart-sass-1.70.0-linux-arm64.tar.gz
- Extracted the files to the ~/opt/dart-sass directory
- Added the line
to the .bashrc file to include the extracted directory in my PATH."export PATH="/opt/dart-sass:$PATH"
- Executed the command
"source ~/.bashrc"
to apply the changes
However, upon running the "sass --version"
command, I encountered the following error:
qemu-aarch64-static: Could not open '/lib/ld-linux-aarch64.so.1': No such file or directory
After conducting some research and trying to install binfmt-support, the error persisted. I'm seeking assistance in understanding the cause of this error and how to resolve it so I can effectively utilize Sass.