获取错误:找到了以下环境的绑定:在我的ubuntu系统中使用Node.js 9.x的Linux 64位



当我试图在react中启动我的项目时,我收到了这个错误,我使用的是Ubuntu系统

Found bindings for the following environments:   - Linux 64-bit with Node.js 9.x 

我使用的是node -v : 10.13.0npm -v : 6.11.2,这里我还附上了我的package.json文件,有人能帮我解决这个问题吗?

{
"name": "gatsby-starter-hello-world",
"private": true,
"description": "A simplified bare-bones starter for Gatsby",
"version": "0.1.0",
"license": "0BSD",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write "**/*.{js,jsx,ts,tsx,json,md}"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo "Write tests! -> https://gatsby.dev/unit-testing" && exit 1"
},
"dependencies": {
"classnames": "^2.2.6",
"gatsby": "^2.24.48",
"gatsby-background-image": "^1.1.2",
"gatsby-plugin-routes": "^1.0.0",
"gatsby-plugin-sass": "^2.3.12",
"gatsby-plugin-sharp": "^2.6.28",
"gatsby-source-filesystem": "^2.3.25",
"gatsby-transformer-sharp": "^2.5.13",
"node-sass": "^4.14.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-router-dom": "^5.0.1"
},
"devDependencies": {
"prettier": "2.0.5"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-hello-world"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}

您只需要使用:

npm rebuild node-sass

我建议在项目的根目录中添加一个.nvmrc文件,以避免出现此错误。这是一个简单的文件,用于修复项目的Node版本,以避免版本之间的不匹配,并强制项目在特定版本下运行。您只需要添加一个包含以下内容的.nvmrc文件:

v10.13.0

尝试删除node_modules并重新安装。你可能还想检查一下,你的路径中是否没有链接NVM或旧的Node 9版本,该节点sass在插入时正在拾取

相关内容

最新更新