installing nodejs npm and grunt gives errors

后端 未结 2 415
死守一世寂寞
死守一世寂寞 2021-01-27 13:04

I\'m not familiar with Python, NodeJS, NPM or Grunt, but I needed to install it because I want to try out a Github project.

I downloaded NodeJS from node.org and install

相关标签:
2条回答
  • 2021-01-27 13:52

    Your problem has nothing to do with Python, nor does the project you're trying to work with.

    npm install will look for a local package.json file and install dependencies from the list supplied in there. After you clone the project you mentioned, make sure you cd to the location of package.json and try npm install again.

    0 讨论(0)
  • 2021-01-27 14:05

    Try this.

    Create new blank folder for your project.Go to your project folder and create manually npm folder (don't use command line).

    Then try again create new project.

    Hope this help.

    0 讨论(0)
提交回复
热议问题