leafspark / AutoGGUF

automatically quant GGUF models
Apache License 2.0
140 stars 12 forks source link

Getting an error on install - Windows 10 #1

Open nigelp opened 3 months ago

nigelp commented 3 months ago

gguf

JohnClaw commented 3 months ago

I encountered the same error on Windows 11.

leafspark commented 3 months ago

Try installing OpenSSL on Windows: https://slproweb.com/products/Win32OpenSSL.html

Alternatively, I'm currently pushing an update out which should include an option to disable the release fetching on startup; meanwhile if you're using the source you can comment out line 92 in AutoGGUF.py:

# Initialize releases and backends
self.refresh_releases() # Comment this out
self.refresh_backends()
leafspark commented 3 months ago

Try installing OpenSSL on Windows: https://slproweb.com/products/Win32OpenSSL.html

Alternatively, I'm currently pushing an update out which should include an option to disable the release fetching on startup; meanwhile if you're using the source you can comment out line 92 in AutoGGUF.py:

# Initialize releases and backends
self.refresh_releases() # Comment this out
self.refresh_backends()

Added this in v1.3.1, it won't check the backends on launch now so if the issue persists you can manually download the backends.

nigelp commented 3 months ago

Hi, thanks very much. Partly fixed, but now the same error occurs on Refresh Releases for llama.cpp

leafspark commented 3 months ago

Does running it from source work: python src/main.py?