-
Notifications
You must be signed in to change notification settings - Fork 200
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
Unsupported daemon version '0.12.2' (not in range: 0.4.3 \u2264 � < 0.5.0) #313
Comments
Same! |
@BobBorges i solved this by writing my code in javascript and using Js IPFS lib |
@jay0x5 I've seen similar comments in other places too – problem is, I just hate javascript. I went into my package files and changed the VERSION_MAXIMUM variable to "0.13.0", line 19 in |
@BobBorges Nice hack! i wish i knew it earlier :( |
Same. Is this repo abandoned then? |
@willcharlton yep! its abandoned :( |
I'm getting a similar issue with trying to connect using python |
@Bird-NZ - this looks promising: https://gitlab.com/cipres/aioipfs |
not working for me any other solution ipfshttpclient.exceptions.VersionMismatch: Unsupported daemon version '0.13.0' (not in range: 0.4.18 ≤ … < 0.5.0) |
For anyone wondering, this is abandoned, I have been told by a "higher up". Use subprocess and interact with the software through that, there's no excuse to use the older version just to make it work with python. However, it doesn't discredit the daemon. |
It's absolutely absurd that ipfs doesn't have a working client in python |
This solution has worked for me. I was successfully able to connect, add a new file and access it from a public gateway. Thanks. Is this project no longer maintained? |
It appears that it is abandoned. Has anyone on this thread evaluated https://gitlab.com/cipres/aioipfs? |
Hi everyone, I'm a contributor to the py-ipfs-http-client project and I've noticed this thread. Firstly, I'm sorry to hear that many of you are having issues with daemon version mismatches. I understand this is frustrating and it's certainly not the experience we want for our users. The issue you're experiencing is due to the client library being out of sync with the newer versions of the IPFS daemon. This is a known issue and we are currently working on a solution to support the latest versions of the daemon. In the meantime, as some of you already suggested, you can manually change the @willcharlton, thanks for pointing out the @Wizock, interacting with the IPFS daemon directly via subprocesses is also an option, but that could be more complex and error-prone. |
This worked for me. Thanks |
Hello, i'm the author of aioipfs, which at the moment supports the RPC API of kubo v0.27.0. I think there will always be a need for a synchronous python ipfs client library like ipfshttpclient for small scripts and existing programs that don't use asyncio and need to interact with IPFS. I remember that with py-ipfs-http-client, instead of using .connect(), you can instantiate a Client directly without doing the version detection ? |
Hi i am new to IPFS and Python and while trying out to store data on ipfs i ran into some errors, please help me
here is my code:
Here is the error:
ipfshttpclient.exceptions.VersionMismatch: Unsupported daemon version '0.8.0' (not in range: 0.4.18 \u2264 � < 0.5.0)
go-ipfs version: 0.12.2
Repo version: 12
Platform: Windows10
The text was updated successfully, but these errors were encountered: