passive-yellow•13mo ago
Unable to install crawlee on node 18
On yarn add crawlee, I got the error:
then on upgrading my node to 18.17, I tried again, and got this:
I'm not sure what I'm doing wrong here.
According to the Github documentation, it should work with node >=16? Or is README outdated?
3 Replies
Hello! The readme seems to be outdated. You could either use npm or use the
--ignore-engines
flag for yarn: https://stackoverflow.com/questions/45088031/how-to-ignore-incompatible-engine-node-error-on-installing-npm-dependencies-wi. Crawlee should still work.Stack Overflow
How to ignore incompatible engine "node" error on installing npm de...
Given this package.json:
{
"name": "yarn-install-fail",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {},
"author": "",
"license": "ISC",
"dependencies": {
...
optimistic-gold•13mo ago
@Light
add to
add to
package.json
passive-yellowOP•13mo ago
i see. thanks!