-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error in requirements.txt file #246
Comments
Let me check this out |
I am experiencing the same I created my environment using |
@Sean-Miningah thanks for confirming. Are you working on a fix for this? |
@srbhr No, i am not. It is my first time setting up the project. I am following instructions when i encountered this.I tried to manually change the typing extensions version, this resulted in more incompatabilities with other packages. Is there a preferred way to setup on linux. |
Okay @Sean-Miningah I'm going to raise a PR for this. |
Describe the bug
When attempting to install dependencies using
pip
, the following error occurs:To Reproduce
pip install -r requirements.txt
with the providedrequirements.txt
file.fastapi
andtyping_extensions
.Expected behavior
The dependencies should be installed without any conflict, allowing the project to be set up successfully.
Additional context
This issue arises due to conflicting dependencies between
fastapi
andtyping_extensions
. While the user specifiestyping_extensions==4.7.1
,fastapi
version 0.109.1 requirestyping-extensions
version greater than or equal to 4.8.0.Potential Solutions
requirements.txt
.pip
to attempt to solve the dependency conflict automatically.This issue affects the compatibility and stability of the project setup and requires resolution to proceed with the installation of dependencies.
The text was updated successfully, but these errors were encountered: