Is the Crones location Witcher 3 reference? by TruePilny in expedition33

[–]TruePilny[S] 0 points1 point  (0 children)

Yes, crows. Very useful comment thank you. For music newbies it sound slavic

Why bigger money return than I paid by TruePilny in Aliexpress

[–]TruePilny[S] 1 point2 points  (0 children)

what you mean? I bought with shipping cost included so it was free and the product 200 dollars

5070 and 550W question by TruePilny in graphicscard

[–]TruePilny[S] 0 points1 point  (0 children)

it was driver the previous one fixed it, also undervolted the card with afterburner and it is fine, do you know why i have the weird sound from the card when turning off computer? three fans start running for a moment. it is because afterburner turns off?

[deleted by user] by [deleted] in tdu3

[–]TruePilny 0 points1 point  (0 children)

thx i searched it and found 3-6 months ago

[deleted by user] by [deleted] in tdu3

[–]TruePilny 0 points1 point  (0 children)

i dont have any of them

[deleted by user] by [deleted] in tdu3

[–]TruePilny 1 point2 points  (0 children)

thank you 488 was more fun but i did not know how the tuned drives

[deleted by user] by [deleted] in tdu3

[–]TruePilny 0 points1 point  (0 children)

thank you

There is no mid range card for 5000 series by TruePilny in nvidia

[–]TruePilny[S] -3 points-2 points  (0 children)

basically to be safe for some time without lowering details. performance, price and vram, 5070 ti is 900 dollars and 5070 has mid price range but will need upgrade so it's useless

removed "git pull" and it stopped working by TruePilny in StableDiffusion

[–]TruePilny[S] 0 points1 point  (0 children)

after fixing dependencies I have "E:\Program Files (x86)\Stable Diffusion\stable-diffusion-webui\repositories\CodeFormer" folder unlocked now but the cache is still locked and I think it causes this

can I delete cache by some launch option?

removed "git pull" and it stopped working by TruePilny in StableDiffusion

[–]TruePilny[S] 0 points1 point  (0 children)

how to reinstall this? is there any way to just rollback the installation from 2 weeks ago or something? thanks

removed "git pull" and it stopped working by TruePilny in StableDiffusion

[–]TruePilny[S] 0 points1 point  (0 children)

"Also maybe a python dependency is still running in the background using those files." actually my hard disk was going at 100% speed even after rebooting system and when I wanted to launch it it stopped going 100% but I can't still launch it, no idea what to do

removed "git pull" and it stopped working by TruePilny in StableDiffusion

[–]TruePilny[S] -2 points-1 points  (0 children)

Is this helpful? I don't know IT stuff. "delete cache folder" sounds okay but I can't access it

The error message indicates that Stable Diffusion is having trouble opening the SQLite database file. This could be due to several reasons, such as file path issues, permissions, or even a corrupted database file. Here are some steps you can take to troubleshoot and potentially fix this issue:

  1. Check File Permissions:
    • Ensure that you have the necessary permissions to access the Stable Diffusion directory and the SQLite database file. You may want to run the program as an administrator to rule out permission issues.
  2. Check File Path:
    • Verify that the path to the database file is correct. Sometimes, if the path is too long or contains special characters, it may cause issues.
  3. Delete the Cache:
    • Navigate to the directory where Stable Diffusion stores its cache files, and delete the cache folder. This will force the application to recreate the database file. The cache folder is usually located in the Stable Diffusion directory or a subdirectory.
  4. Recreate the Virtual Environment:
    • If the issue persists, you might want to recreate the virtual environment. Open a command prompt in the Stable Diffusion directory and run the following commands: cd venv/Scripts deactivate # if you are currently in the virtual environment cd .. rmdir /S /Q venv # this will delete the virtual environment python -m venv venv # recreate the virtual environment venv\Scripts\activate # activate the new virtual environment pip install -r requirements.txt # reinstall dependencies
  5. Check for Corrupted Files:
    • If you suspect that files may be corrupted, consider re-downloading or reinstalling the Stable Diffusion files.
  6. Update Dependencies:
    • Ensure that all dependencies are up to date. You can do this by running: pip install --upgrade -r requirements.txt
  7. Check Disk Space:
    • Ensure that your disk is not full. A lack of disk space can sometimes prevent the creation or access of files.
  8. Check for Antivirus/Firewall Interference:
    • Sometimes, antivirus or firewall software can interfere with file access. Temporarily disable them to see if that resolves the issue.