grandhi
grandhi

Reputation: 219

Unable to install *sequelize* using npm

I am unable to install sequelize using npm. When I am trying getting following error. I am using node version v5.4.1 and npm version 3.3.12.enter image description here

can anyone help me.

Thanks

Upvotes: 1

Views: 2174

Answers (2)

Shahroz Shaikh
Shahroz Shaikh

Reputation: 115

https://www.npmjs.com/package/sequelize

Hopefully the procedure on the link will help you installing sequelize

Or try this

$ npm install --save sequelize

And one of the following: $ npm install --save pg pg-hstore $ npm install --save mysql // For both mysql and mariadb dialects $ npm

install --save sqlite3 $ npm install --save tedious // MSSQL

Upvotes: 0

Alireza Davoodi
Alireza Davoodi

Reputation: 769

it is duplicate

Your module name contains sequelize key word and you should change it in package.json

Upvotes: 2

Related Questions