我正在尝试在我的mac上卸载rbenv,但无法弄清楚它的安装位置。我被困在https://github.com/sstephenson/rbenv#uninstalling-rbenv的第2步。我想我用自制软件来安装rbenv。
答案 0 :(得分:4)
请注意步骤2的命令中的引号是反引号(在键盘上,它是键右键,而不是引号键),而不是引号。
`rbenv root` # this command will return the root directory where rbenv installed.
rm -rf `rbenv root` # this will uninstall rbenv completed.