如何在CentOS 6上修复virtualenv:找不到命令?

最近,我正在通过Let’s Encrypt保护一个网站的安全,在运行“./letsencrypt-auto”期间遇到以下错误:

Checking for new version...
Creating virtual environment...
./letsencrypt-auto: line 455: virtualenv: command not found

这是在使用CentOS 6.7托管的DigitalOcean上发生的,以下是我解决问题的方法。

确保您具有root权限并执行以下命令。

yum install centos-release-SCL
yum update
yum install scl-utils python27 python27-scldevel
scl enable python27 bash

之后,我能够继续进行Let's Encrypt的设置。

参考:https://community.letsencrypt.org/t/solved-virtualenv-command-not-found/2127/8

类似文章