博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux – ImportError: No module named M2Crypto.EVP解
阅读量:6353 次
发布时间:2019-06-22

本文共 1008 字,大约阅读时间需要 3 分钟。

hot3.png

Unhandled exception in thread started by <function _loop at 0x7f772b117410>

Traceback (most recent call last):

File "/home/shadowsocks-manyuser/shadowsocks/server_pool.py", line 68, in _loop

loop.run()

File "/home/shadowsocks-manyuser/shadowsocks/eventloop.py", line 215, in run

handler(events)

File "/home/shadowsocks-manyuser/shadowsocks/tcprelay.py", line 631, in _handle_events

self._dns_resolver, self._is_local)

File "/home/shadowsocks-manyuser/shadowsocks/tcprelay.py", line 94, in __init__

config['method'])

File "/home/shadowsocks-manyuser/shadowsocks/encrypt.py", line 136, in __init__

self.cipher = self.get_cipher(key, method, 1, iv=random_string(32))

File "/home/shadowsocks-manyuser/shadowsocks/encrypt.py", line 166, in get_cipher

import M2Crypto.EVP

ImportError: No module named M2Crypto.EVP

看到最后的几个字母就知道什么意思。

问题原因

主要是你的VPS/服务器没有安装M2Crypto

 

解决办法

安装M2Crypto即可解决问题

CentOS系统

 

1

yum install m2crypto

Debian/Ubuntu系统

 

1

apt-get install python-m2crypto

转载于:https://my.oschina.net/u/1382365/blog/483066

你可能感兴趣的文章
银行卡的三个磁道
查看>>
OpenSSL 提取 pfx 数字证书公钥与私钥
查看>>
Keepalived详解(四):通过vrrp_script实现对集群资源的监控【转】
查看>>
CollapsingToolbarLayoutDemo【可折叠式标题栏,顺便带有CardView卡片式布局】
查看>>
CentOS7.4安装配置mysql5.7 TAR免安装版
查看>>
解决IE二级链接无法打开故障
查看>>
Windows phone应用开发[16]-数据加密
查看>>
SQL Server 迁移数据到MySQL
查看>>
通用数据压缩算法简介
查看>>
The next Industry Standard in IT Monitoring, a python implementation Nagios like tool --- Shinken
查看>>
(笔记)找工作,该怎么进补
查看>>
div的显示和隐藏以及点击图标的更改
查看>>
(轉貼) Ubuntu將在ARM平台netbook上現身 (SOC) (News) (Linux) (Ubuntu)
查看>>
SQL注入测试工具:Pangolin(穿山甲)
查看>>
在html 的img属性里只显示图片的部分区域(矩形,给出开始点和结束点),其他部份不显示,也不要拉伸...
查看>>
程序员第二定律:量化管理在程序员身上永无可能
查看>>
ubuntu一些脚本的执行顺序
查看>>
类继承的结构
查看>>
Intel 被 ARM 逼急了
查看>>
testng + reportng 测试结果邮件发送
查看>>