我有一个用Python编写的.cgi脚本需要python 2.7,但CentOS 6没有。我通过scl安装。
我在/etc/profile.d
下创建了python27.sh#!/bin/bash
source /opt/rh/python27/enable
虽然这适用于普通用户,但显然cgi脚本仍然调用/ usr / bin / python。如何让cgi脚本调用python27呢?
答案 0 :(得分:0)
尝试:
#!/usr/bin/scl enable python27 -- python