Hello!!
I have to make an update to our website, meant to go live tomorrow and it’s giving me a deployment error when I try to publish.
The site is attached to Contentful for content management and when I made the changes through there, I am getting a notice of “Failure During Install Dependencies.”
Any help you can provide would be amazing!
I should also preface this with saying that I know NOTHING about coding or any of this. It’s a different language to me.
ANY HELP WOULD BE SO APPRECIATED AS I’M UNDER A TIGHT DEADLINE!!
Thank you so much!!!
Below is the Error message and AI “solution” I am getting on Netlify:
line 82: The error AttributeError: module ‘collections’ has no attribute ‘MutableSet’ indicates that the collections module being used does not have MutableSet.
Solution
This error is likely due to a Node version mismatch. The module collections.MutableSet was added in Node.js version 12.0.0 and the current Node version being used is 10.19.0. To resolve this issue, you need to update the Node version to at least 12.x.
To change the Node.js version in your Netlify build, you can refer to the documentation on changing Node versions. After updating the Node version, run the build again to ensure that the collections.MutableSet error is resolved.