Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

After installing node.js and sequelize.js, and running a basic test, the message "You need to install mysql package manually" is displayed.

I've tried searching the web and Stackoverflow for the cause of this message.

I have installed:

  • mysql server version 5.5.31-0ubuntu0.13.04.1
  • node v0.10.5
  • sequelize.js v1.6.0
question from:https://stackoverflow.com/questions/17667368/sequelize-js-you-need-to-install-mysql-package-manually

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
161 views
Welcome To Ask or Share your Answers For Others

1 Answer

You need to install the mysql npm module:

npm install mysql

The reason sequelize doesn't have the mysql module as its own dependency is because it can be used with other databases such as postgres or sqlite.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...