Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
perlbrew [2014/08/11 15:42] popel |
perlbrew [2016/11/25 12:34] (current) ufal |
||
---|---|---|---|
Line 10: | Line 10: | ||
source / | source / | ||
eval " | eval " | ||
+ | |||
The second line is optional, but it enables [[https:// | The second line is optional, but it enables [[https:// | ||
Line 17: | Line 18: | ||
export PERL5LIB="" | export PERL5LIB="" | ||
+ | |||
+ | To finish the Perlbrew environment setup, run (in a new bash session) | ||
+ | |||
+ | perlbrew switch perl-5.18.2 | ||
Line 60: | Line 65: | ||
# but to get support for XFT anti-aliased fonts on newer Ubuntu, let's do: | # but to get support for XFT anti-aliased fonts on newer Ubuntu, let's do: | ||
cpanm -n -v git:// | cpanm -n -v git:// | ||
- | cpanm -n UNIVERSAL:: | + | cpanm -n PerlIO:: |
cpanm < list.txt | cpanm < list.txt | ||
Line 98: | Line 103: | ||
* '' | * '' | ||
* '' | * '' | ||
+ | |||
+ | ===== How to install Perlbrew for a new architecture ===== | ||
+ | |||
+ | source / | ||
+ | |||
+ | (You probably have this in your '' | ||
+ | |||
+ | wget -O - http:// | ||
+ | source / | ||
+ | perlbrew install-cpanm | ||
+ | |||
+ | That's all! Now, install some perl, as described [[perlbrew# | ||
+ | |||
+ | perlbrew available | ||
+ | perlbrew install -j 4 perl-5.18.2 | ||
+ | # If this fails as mentioned above, finish the installation with something like | ||
+ | # cd / | ||
+ | perlbrew switch perl-5.18.2 | ||