Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Install path of Perl6 modules with Panda

Tags:

raku

I'm struggling to find the path of Panda installed modules and I haven't found so far. Moreover, @*INC does not show me anything.

I'm trying to find somewhere in: /home/toniher/.rakudobrew/moar-nom/install/share/perl6/

Any hint would be appreciated.

Thanks!

like image 901
Toni Hermoso Pulido Avatar asked Jan 07 '16 13:01

Toni Hermoso Pulido


1 Answers

You can dump Rakudo's include paths via

perl6 -e '.put for $*REPO.repo-chain'

Note that the names of installed modules are mangled to allow for installation of different versions of a given module or modules of same name but different authority.

like image 109
Christoph Avatar answered Jan 18 '23 07:01

Christoph