Installing ruby sudo make command not found (Vagrant, Virtualbox) -
i trying development environment , running. installed virtualbox , used vagrant hashicorp/precise32 box. access vm through ssh , trying install latest version of ruby.
i pasted
wget -o ruby-install-0.5.0.tar.gz https://github.com/postmodern/ruby-install/archive/v0.5.0.tar.gz tar -xzvf ruby-install-0.5.0.tar.gz cd ruby-install-0.5.0/ sudo make install into command line https://github.com/postmodern/ruby-install#readme
the prompt shows sudo make install , when hit enter message says "sudo: make: command not found."
what doing wrong?
i know there boxes ruby setup wanted go through process myself learn bit along way.
a separate issue came across box has outdated version of ubuntu. when try upgrade warns me not on ssh. there better way?
thanks
maybe don't have make installed on ubuntu. can install package build-essential install make , other building tools.
sudo apt-get install build-essential
also, here's reference on installing ruby, ruby on rails, , other tools on ubuntu.
Comments
Post a Comment