Categories: Uncategorized

[Perl]Install plenv

What’s plenv

How to install

git clone https://github.com/tokuhirom/plenv.git ~/.plenv
echo 'export PATH="$HOME/.plenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(plenv init -)"' >> ~/.bashrc
git clone https://github.com/tokuhirom/Perl-Build.git ~/.plenv/plugins/perl-build/
bash
plenv install 5.10.0
plenv versions
# * system (set by /home/zuqqhi2/.plenv/version)
#   5.10.0
echo "export PLENV_VERSION=5.10.0" >> ~/.bashrc
source ~/.bashrc
zuqqhi2