出现错误:在以下环境中找到了绑定:-我的ubuntu系统中具有Node.js 9.x的Linux 64位

问题描述

当我尝试以响应方式启动项目时,出现此错误,我正在使用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,以确保安装时node-sass处于活动状态