Adding new module in perl script

I would like to add PDL module in my perl script. How can I install the PDL module in Material Studio library?

I already installed the module in my window using Strawberry perl and added the library path of PDL using 'use lib' command in Material Studio(as below), but it is not working.

Maybe, the path is not added in @INC. Is there other way to do this? 


--Material Studio perl script file--


use lib 'C:\Strawberry\perl\site\lib';

use PDL;