-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
Fix circular dependency issue when installing mitdeeplearning in lab 1 #176
base: master
Are you sure you want to change the base?
Conversation
Before the change running the cell resulted in the following error which didn’t allow for the rest of the lab to be completed: ``` error: ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. gcsfs 2025.3.0 requires fsspec==2025.3.0, but you have fsspec 2024.12.0 which is incompatible. ``` Attempting to upgrade each library manually resulted in a dependency issue where different dependencies required different versions of the same library: ``` ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. datasets 3.4.1 requires fsspec[http]<=2024.12.0,>=2023.1.0, but you have fsspec 2025.3.0 which is incompatible. Successfully installed fsspec-2025.3.0 ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. gcsfs 2025.3.0 requires fsspec==2025.3.0, but you have fsspec 2024.12.0 which is incompatible. ``` I assume this was fixed in `mitdeeplearning` so the upgrade fixes this issue.
With ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. Any idea how to fix it? |
Hey Xie, try running it twice with that updated command. Can you paste the
entire contents of the cell here?
…On Thu, Apr 3, 2025, 00:09 Shaojun Xie ***@***.***> wrote:
With pip install mitdeeplearning --upgrade --quiet, I still get the error:
ERROR: pip's dependency resolver does not currently take into account all
the packages that are installed. This behaviour is the source of the
following dependency conflicts.
gcsfs 2025.3.0 requires fsspec==2025.3.0, but you have fsspec 2024.12.0
which is incompatible.
Any idea how to fix it?
—
Reply to this email directly, view it on GitHub
<#176 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFCIDXPA3TENA45OOOXQSB32XRU3RAVCNFSM6AAAAABZTSFED2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONZTHEZDKNBRGQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
[image: xie186]*xie186* left a comment
(MITDeepLearning/introtodeeplearning#176)
<#176 (comment)>
With pip install mitdeeplearning --upgrade --quiet, I still get the error:
ERROR: pip's dependency resolver does not currently take into account all
the packages that are installed. This behaviour is the source of the
following dependency conflicts.
gcsfs 2025.3.0 requires fsspec==2025.3.0, but you have fsspec 2024.12.0
which is incompatible.
Any idea how to fix it?
—
Reply to this email directly, view it on GitHub
<#176 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AFCIDXPA3TENA45OOOXQSB32XRU3RAVCNFSM6AAAAABZTSFED2VHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONZTHEZDKNBRGQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Thank you for your quick response.
First run:
Second run: No error any more. This is weird. But still thank you for your help. |
Before the change running the cell resulted in the following error which didn’t allow for the rest of the lab to be completed:
Attempting to upgrade each library manually resulted in a dependency issue where different dependencies required different versions of the same library:
I assume this was fixed in
mitdeeplearning
so the upgrade fixes this issue.