Reputation: 3866
After I uninstalled rbenv from Ubuntu, every time I open the terminal I get this message:
The program 'rbenv' is currently not installed. You can install it by typing:
sudo apt-get install rbenv
How should I remove this message?
Upvotes: 4
Views: 812
Reputation: 160571
Part of the rbenv initialization occurs in your ~/.bashrc or ~/.bash_profile (or one of the similar start-up scripts). Typically those lines are at the bottom of the script. Read the above page for more information and what to look for.
Remove those lines that try to initialize rbenv and you should be fine.
Upvotes: 5