我正在尝试运行一些ppm命令,但不会走得太远。我在一台机器上运行Ubuntu 12.04.1 LTS

azure VM。
> $ sudo apt-get install ppm
Reading package lists... Done
Building dependency tree
Reading state information... Done
ppm is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 7 not upgraded.> $ ppm repo add ASSP2 "http://downloads.sourceforge.net/project/assp/ASSP V2 multithreading/packages/"
No command 'ppm' found, but there are 16 similar ones
ppm: command not found> $ perl -v
This is perl 5, version 14, subversion 2 (v5.14.2) built for x86_64-linux-gnu-thread-multi
(with 55 registered patches, see perl -V for more detail)任何方向都会非常有帮助。
仅供参考:我已经想出了一种使用cpan的变通办法,但我更喜欢使用ppm
变通的工作很简单
$ sudo cpan
cpan[#]> install some::package发布于 2013-01-07 08:59:26
"ppm“是ActiveState's ActivePerl使用的包管理器的名称。
Ubuntu ppm package是“电源策略管理器”,这是一个完全不相关的东西。
除非你在你的Ubuntu安装中使用ActivePerl,否则你不想使用他们的PPM工具。如果你正在尝试安装的包在Ubuntu的repos中不可用,或者你不想使用它,那么使用CPAN确实是你最好的选择。
https://stackoverflow.com/questions/14188270
复制相似问题