Update README for fix for installation on Windows#224
Merged
twang849 merged 6 commits intosupercog-ai:mainfrom Jun 16, 2025
Merged
Update README for fix for installation on Windows#224twang849 merged 6 commits intosupercog-ai:mainfrom
twang849 merged 6 commits intosupercog-ai:mainfrom
Conversation
drbrady8800
approved these changes
Jun 16, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue
Dependency conflicts when trying to install the agentic framework on Windows with

"uv pip install -e "./agentic[all,dev]" --extra-index-url https://download.pytorch.org/whl/cpu"
Torch+cpu requirement cannot be installed.

Cause
By default, uv will only consider package versions that are published on the first index it finds for a given package name. When using the flag "--extra-index-url" it makes that extra index the default index to look for packages, causing weird issues. For example, that jinja2 cannot be found on version 3.1.6 when it does exist on PyPI. This is because it is looking for that package solely on the download website for torch, which has outdated links.
Additionally, torch cpu version does not exist
Fix
Add
--index-strategy unsafe-first-matchto theuv pip installcommand. This allows uv to search for each package across all indexes, without limiting the candidate versions to those present in the first index that contains the package.Removed "+cpu" from the pyproject.toml file dependency under [rag]
See Document installing on Windows #206