I'm running perl-5.32.0 on an Ubuntu VM, and I keep getting this warning every time I open a new terminal:
ERROR: The installation "perl-5.30.0" is unknown.
I removed directories to old versions, which caused this error (disk space is at a premium).
I don't see a command within the perlbrew menu that can remove a version. I've run perlbrew clean
which cleaned up a lot of disk space, but I still get the error.
I've thought about editing the header file
con@V:~/.perlbrew$ cat init
# DO NOT EDIT THIS FILE
export PERLBREW_MANPATH="/home/con/perl5/perlbrew/perls/perl-5.30.0/man"
export PERLBREW_PATH="/home/con/perl5/perlbrew/bin:/home/con/perl5/perlbrew/perls/perl-5.30.0/bin"
export PERLBREW_PERL="perl-5.30.0"
export PERLBREW_ROOT="/home/con/perl5/perlbrew"
export PERLBREW_VERSION="0.86"
but given # DO NOT EDIT THIS FILE
I don't think I should do that.
How can I get rid of the error ERROR: The installation "perl-5.30.0" is unknown.
?