0

我正在尝试运行具有邮件程序并遇到以下错误的 python 程序,我尝试使用 apt-get 安装邮件程序,如下所示,但再次遇到错误..如何获取邮件程序模块?

Traceback (most recent call last):
  File "myyler.py", line 1, in <module>
    from mailer import Mailer
ImportError: No module named mailer

错误:-

<terminal>sudo apt-get install mailer 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package mailer
4

2 回答 2

4

包名是python-mailer. 你也可以使用 Python 的包管理器 pip 安装包

$ sudo apt-get install python-pip
$ pip install mailer
于 2013-09-02T01:41:28.527 回答
1

您应该使用 pip 安装软件包:

sudo apt-get install python pip
pip install mailer

您还可以使用:sudo easy_install mailer

顺便说一句,要通过 apt 安装,python 包被命名为 python-* :

sudo apt-get install python-mailer
于 2013-09-02T01:43:51.163 回答