You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I ran into a little bit of trouble trying to run pip install kani[openai] because I was running Python 3.7 instead of 3.10+. I received the error message "kani 0.0.0 does not provide the extra 'openai'" which wasn't very helpful. If possible, reminding the user that Kani requires Python 3.10+ in this message might be helpful for future installations.
The text was updated successfully, but these errors were encountered:
This particular error message was because of a test deploy to pypi without any extras that didn't specify any version constraints; I deleted v0.0.0 and installs on unsupported Python versions now just look like this:
(venv3.8) $ pip install kani
ERROR: Could not find a version that satisfies the requirement kani (from versions: none)
ERROR: No matching distribution found for kani
I don't know if it's possible to have pypi specify that you need to update your Python version in the error.
I ran into a little bit of trouble trying to run
pip install kani[openai]
because I was running Python 3.7 instead of 3.10+. I received the error message "kani 0.0.0 does not provide the extra 'openai'" which wasn't very helpful. If possible, reminding the user that Kani requires Python 3.10+ in this message might be helpful for future installations.The text was updated successfully, but these errors were encountered: