vim: command not found
Andrew Henderson
I'm trying to install openflow in Ubuntu, but I encounter a problem when installing regression suite. I follow the instruction from openflow website with the below lines
To update the OF_ROOT environment variable for your setup:
cd ~/
cp <openflow-dir>/regress/scripts/env_vars .
vim env_varsbut when I run vim env_vars, I get a vim: command not found error. Why?
1 Answer
Try installing vim:
sudo apt-get install vimor you can use a different text editor, like nano, which may be easier to use:
nano env_vars 2