I know that the active perl have a Perl Package Manager, but this tool does not support proxy, and I must set proxy to access internet in my firm.
Try:
set HTTP_proxy=http://yourproxy:nnnn
set HTTP_proxy_user=yourusername
set HTTP_proxy_pass=yourproxypassword
ppm-shell
install URI::Escape
If that works for you, then you can add them to your environment permanently in the usual way.
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.
| [reply] [d/l] |
Thank you so much, it works!!!
:-)
| [reply] |
Do you mean URI::Escape or URI::Escape::XS? The former is part of URI, which shouldn't require a complicated installation (no non-Perl parts). The latter is obviously more complicated as it requires compilation of XS. URI should be available like ActivePerl's PPM, not sure about the other.
Update: missed the version number. Yeah, you may need to compile URI::Escape::XS, but is it necessary, have you profiled your code, is URI::Escape a significant bottleneck. | [reply] |
I want to update the URI::Escape.
Now the URI::Escape version in my perl is 3.29,but I want to update it to 3.30, how to do so, thanks!
| [reply] |