-
-
Notifications
You must be signed in to change notification settings - Fork 330
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing ICU package in AppImage #554
Comments
This issue is stale because it has been open 30 days with no activity. Remove the stale label or comment, else this will be closed in 5 days. |
This issue was closed because it has been stale for 5 days with no activity. |
@kelvinhammond You need libcrypt under your shared libraries, specifically an older version of libcrypt so you get libcrypt.so.1 under you path. libxcrypt-legacy has that. Try this nix shell: { pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
#pkgs.libxcrypt
pkgs.libxcrypt-legacy
];
shellHook = ''
export LD_LIBRARY_PATH=${pkgs.libxcrypt-legacy}/lib:$LD_LIBRARY_PATH
echo "LD_LIBRARY_PATH is set to $LD_LIBRARY_PATH"
'';
} |
i had the same issue here in fedora, installing that fixed it! looks like linux devs depreciated libxcrypt too soon it seems, the new replacement is NOT ready and is NOT backwards compatible. |
I tried
|
I can run it with the |
On nixos when I run
appimage-run ./StabilityMatrix.AppImage
I get the following error. I've tried installing the icu packages (all of them) and none of them seem to provide what is needed. Which package ICU package is required for the app image on Linux?I can get it to run via
DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 DOTNET_SYSTEM_GLOBALIZATION_PREDEFINED_CULTURES_ONLY=false appimage-run ./StabilityMatrix.AppImage
with the latest version (v2.9.2) though.However I get this error after closing the model selection on first run,
I selected to install
Stable Diffusion Web UI
and it failed.The text was updated successfully, but these errors were encountered: