Hi i used this link but not working
https://rocket.chat/docs/developer-guides/pre-requisites/
I have these errors


Thanks for your help
seems you did not : meteor npm install ?
@lc3t35 thnaks
I only used thes command line
curl https://install.meteor.com/ | sh
git clone https://github.com/RocketChat/Rocket.Chat.git
cd Rocket.Chat
meteor
so before doing meteor, do first : meteor npm install
then : meteor
@lc3t35 thanks so much for your reutor
why without Rocket.Chat it's working
http://screencast.com/t/miQIDI4h28
and with your solution is stoping in "Building for os.linux.x86_64 "
the result of npm install is not correct : it failed at rebuilding bcrypt with node-gyp.
you need first to install build-essential package : sudo apt install build-essential
then meteor npm install
when you start with a new project, bcrypt module is not required, that's why it works ;)
thanks so much :)
@lc3t35 thanks 馃憤
Most helpful comment
the result of npm install is not correct : it failed at rebuilding bcrypt with node-gyp.
you need first to install build-essential package : sudo apt install build-essential
then meteor npm install
when you start with a new project, bcrypt module is not required, that's why it works ;)