当我使用PtCharm时,我发现PyCharm总是从/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/six.pyc中搜索文件。错误是:
File /Library/Python/2.7/site-packages/jenkins/__init__.py, line 59, in <module>
from six.moves.http_client import BadStatusLine
ImportError: No module named http_client
我
有人成功地在Windows上安装了phpsh吗?
我的Windows7机器上安装了Php 5.2和Python 2.7。当我尝试运行setup.py时,我得到一个NameError: name '__init__' is not defined。我发现有人篡改了项目,但我遇到了同样的错误。
你知道我能做什么吗?
我正在尝试将get_metadata()设置在s3桶中的所有项目(对象)上。get_metadata调用不返回任何。
我正在使用Python2.7&Boto2.48。以下是我的密码。
for key in bucket:
key = bucket.get_key(key.name)
print key
if key is not None:
print key.name, key.get_metadata('Cache-Control'), key.get_metadata('Content-Type')
我在一个带有SuccessMessageMixin的项目中得到了这个错误,但不知道原因。这是我在view.py中的代码。
from django.contrib.messages.views import SuccessMessageMixin
from django.views.generic import CreateView
class CampanaNueva(SuccessMessageMixin, CreateView):
model = Campana
template_name = "licencias_campana_nueva.html"