我有一个需要机械化的 CGI 脚本,但它没有安装在我的网络主机上的系统范围内。我将它安装在我的主目录中
$HOME/.local/lib/python2.7/site-packages/mechanize-0.2.5-py2.7.egg
但是我的 CGI 脚本无法导入 mechanize
#!/usr/bin/python
import sys,cgi,cgitb
import mechanize
^-- Exception(import mechanize ImportError: cannot import name mechanize)
我该如何解决?