質問

私は私のOSでiMapclientを取得しようとしていますが、それが働いています。そのようなPerlリポジトリを追加しました。

     zypper ar -f -n perl http://download.opensuse.org/repositories/devel:/languages:/perl/SLE_11_SP2 Perl
.

そして私はそれがリポジトリが追加されていると言う正しい出力を取得します。

しかし私がこのようなimapclientを追加するためにZypperを使うとき

    zypper install -y "perl(MAIL::IMAPClient)"
.

私は取得します:

    zypper install -y "perl(MAIL::IMAPClient)"
    Refreshing service 'susecloud'.
    Retrieving repository 'perl' metadata [done]
    Building repository 'perl' cache [done]
    Retrieving repository 'perl' metadata [error]
    Repository 'perl' is invalid.
    [|] Valid metadata not found at specified URL(s)
    Please check if the URIs defined for this repository are pointing to a valid 
    repository.
    Warning: Disabling repository 'perl' because of the above error.
    Loading repository data...
    Reading installed packages...
    'perl(MAIL::IMAPClient)' not found in package names. Trying capabilities.
    No provider of 'perl(MAIL::IMAPClient)' found.
.

あらゆる助けが高くなるでしょう!ありがとう!

役に立ちましたか?

解決

>cpan install MAIL::IMAPClient
.

または硬い

>cpan
cpan> force install MAIL::IMAPClient
.

または

>ppm install MAIL::IMAPClient
.

またはGUI

>ppm
*choose package and install via gui*
.

link: mail :: imapclient

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top