szczyglis-dev / py-gpt

Desktop AI Assistant powered by GPT-4, GPT-4 Vision, GPT-3.5, Gemini, Claude, Llama 3, DALL-E, Langchain, Llama-index, chat, vision, voice control, image generation and analysis, agents, code/command execution, file upload/download, speech synthesis and recognition, access to Web, memory, presets, plugins, assistants, and more. Linux, Windows, Mac.
https://pygpt.net
MIT License
544 stars 106 forks source link

PySide6 from requirements.txt not supported on Mac Sonoma 14.5 #57

Open quercusilvam opened 4 months ago

quercusilvam commented 4 months ago

Hello,

I tried to install using pip install pygpt-net but there is no newest version for Mac (for some reason it downloaded 2.1.3). Tried with venv etc - the same result. So I switched to run from source code and found two issues:

ERROR: Could not find a version that satisfies the requirement PySide6==6.4.2 (from versions: 6.6.0, 6.6.1, 6.6.2, 6.6.3, 6.6.3.1, 6.7.0, 6.7.1)
ERROR: Could not find a version that satisfies the requirement shiboken6==6.4.2 (from versions: 6.6.0, 6.6.1, 6.6.2, 6.6.3, 6.6.3.1, 6.7.0, 6.7.1)

After changing in requirements.txt those lines it worked:

PySide6==6.6.3.1
PySide6-Addons==6.6.3.1
PySide6-Essentials==6.6.3.1
...
shiboken6==6.6.3.1

Maybe will help somebody ;)