1

以下のように python2.7 を構成してインストールしました。

./configure --enable-shared --with-ssl
make
install

次に、コマンドで gunicorn をインストールしpython setup.py installます。

インストールは問題なくうまくいきましたが、今実行しているとき

gunicorn django.wsgi:application

エラーを下回っています。先に進むにはどうすればよいですか?

   Error: class uri 'sync' invalid or not found:

[Traceback (most recent call last):
  File "/glbdevuser6/glb/portal/aettool/local/lib/python2.7/site-packages/gunicorn-17.5-py2.7.egg/gunicorn/util.py", line 124, in load_class
section, uri)
  File "build/bdist.linux-x86_64/egg/pkg_resources.py", line 378, in load_entry_point
return get_distribution(dist).load_entry_point(group, name)
  File "build/bdist.linux-x86_64/egg/pkg_resources.py", line 2566, in load_entry_point
return ep.load()
  File "build/bdist.linux-x86_64/egg/pkg_resources.py", line 2260, in load
entry = __import__(self.module_name, globals(),globals(), ['__name__'])
  File "/glbdevuser6/glb/portal/aettool/local/lib/python2.7/site-packages/gunicorn-17.5-py2.7.egg/gunicorn/workers/sync.py", line 12, in <module>
import ssl
  File "/glbdevuser6/glb/portal/aettool/local/lib/python2.7/ssl.py", line 60, in <module>
import _ssl             # if we can't import it, let the error propagate
ImportError: No module named _ssl
]
4

1 に答える 1

0

ソースから python をコンパイルしたので、Linux ディストリビューションを使用していると思います。少なくとも 2 つの SSL ライブラリが必要です:opensslおよびopenssl-devel

Ubuntu の場合:apt-get install openssl openssl-devel

Redhat ベースの場合:yum install openssl openssl-devel

ソースからビルドするには、 opensslおよびopenssl-develからダウンロードできます。

それが役に立てば幸い。

于 2013-07-21T02:56:41.303 に答える