chandradot99
chandradot99

Reputation: 3866

How do you let Ubuntu know you've uninstalled rbenv?

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

Answers (1)

the Tin Man
the Tin Man

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

Related Questions