0

为什么当我直接调用我的脚本时导入 psyco 可以工作,但是当我从 bash 脚本调用它时它会失败???

测试.sh:

while true
do
    python test.py;
    sleep 10;
done

测试.py:

try:
    import psyco
    print "Got psyco!"
except ImportError:
    print "No psyco."

现在...

> python test.py

“有精神科!”

> ./test.sh

“没有精神科。”

“没有精神科。”

...

4

1 回答 1

0

该系统上安装了 2 个版本的 Python。

不同的环境正在调用不同版本的 python,它没有 psyco。

于 2013-03-24T22:07:41.763 回答