草庐IT

act_name

全部标签

python导入paramiko报错 "cannot import name util"

我已经安装了paramiko模块。但是,当我尝试导入该模块时。我收到以下错误。importparamiko---------------------------------------------------------------------------ImportErrorTraceback(mostrecentcalllast)in()---->1importparamikoC:\Anaconda\lib\site-packages\paramiko\__init__.pyin()2829--->30fromparamiko.transportimportSecurityOpti

python - Sublime Text : How to get the file name of the current view

我正在尝试编写一个小插件来删除当前文件并关闭事件View。出于某种原因,self.view.file_name()总是返回None。我是Python的新手,我不知道为什么它不能像这样工作。根据APIReferencefile_name()返回当前View的文件名。importsublime,sublime_plugin,send2trashclassDeleteCurrentFileCommand(sublime_plugin.TextCommand):defrun(self,edit):f=self.view.file_name()if(fisNone):returnsend2tra

python - Django Admin + FORCE_SCRIPT_NAME + 登录重定向错误

我使用fastcgi_pass让Django在Nginx后面运行。我在类似/django/sample的子路径中运行Django。location/django/sample{includefastcgi_params;fastcgi_pass127.0.0.1:8025;}我在Django设置模块中使用FORCE_SCRIPT_NAME,这似乎解决了我在子路径上运行时遇到的所有问题。在settings.py中:FORCE_SCRIPT_NAME="/django/sample/"我到这里用管理员登录(并正确获取管理员用户界面):http://server/django/sample/

python - 导入错误 : No module named sklearn (Python)

我想使用scikit-learn。我输入了pipinstall-Uscikit-learnpip3installsklearn安装它;但是当我输入$Python>>>importsklearn返回ImportError:Nomodulenamedsklearn我遵循了其他教程,但它不起作用。此外,我的环境返回此警告:Ifyouhaveinstalledscikit-learnfromsource,pleasedonotforgettobuildthepackagebeforeusingit:runpythonsetup.pyinstallormakeinthesourcedirecto

python - Flask ('application' ) 与 Flask(__name__)

在官方Quickstart,建议在使用单个模块时使用__name__:...Ifyouareusingasinglemodule(asinthisexample),youshoulduse__name__becausedependingonifit’sstartedasapplicationorimportedasmodulethenamewillbedifferent('__main__'versustheactualimportname)....然而,在他们的APIdocument,当我的应用程序是一个包时,建议硬编码:Soit’simportantwhatyouprovideth

python - 导入错误 : No module named grid_search, learning_curve

Scikit学习问题l无法使用Sklearn和sklearn.grid_search的learning_curve。当我执行importsklearn(有效)fromsklearn.clusterimportbicluster(有效)。我尝试重新安装scikit-learn也仍然是同样的问题。我正在使用python3.5.6,Scikit-learn版本0.20.0Window10。importsklearnfromsklearn.model_selectionimportStratifiedKFold,cross_val_score,train_test_splitfromsklea

python - 在检查点 Tensorflow 中找不到 key <variable_name>

我正在使用Tensorflowv1.1,我一直在尝试弄清楚如何使用我的EMA权重进行推理,但无论我做什么,我都会不断收到错误Notfound:KeyW/ExponentialMovingAveragenotfoundincheckpoint即使当我遍历并打印出所有tf.global_variables键存在这是一个可重现的脚本,大量改编自Facenet's单元测试:importtensorflowastfimportnumpyasnptf.reset_default_graph()#Create100phonyx,ydatapointsinNumPy,y=x*0.1+0.3x_data

python - 如何在没有 url_for ('static' , file_name ='xxx' 的情况下在 Flask 中获取静态文件)

我不想使用url_for('static',file_name='foo.jpg')在模板中获取静态文件。如何通过这种方式获取静态文件:谢谢 最佳答案 您可以设置自己的路由来提供静态文件。添加此方法并更新send_from_directory方法中的静态路径目录,然后您的img标签应该可以工作。@app.route('/pic/')defsend_pic(filename):returnsend_from_directory('/path/to/static/files',filename)对于生产应用,您应该将服务器设置为直接提供

Python/ flask 错误 : "ImportError: cannot import name _compare_digest"

对于Windows,我关注thisFlasktutorial当我遇到以下错误时:C:\Users\GregoryGundersen\Documents\Research\flask-test>pythonrun.pyTraceback(mostrecentcalllast):File"run.py",line2,infromappimportappFile"C:\Users\GregoryGundersen\Documents\Research\flask-test\app\__init__.py",line1,infromflaskimportFlaskFile"C:\Python2

python - 导入错误 : No module named 'html.parser' ; 'html' is not a package (python3)

这个问题在这里已经有了答案:Importinginstalledpackagefromscriptwiththesamenameraises"AttributeError:modulehasnoattribute"or"ImportError:cannotimportname"(2个答案)关闭3年前。代码:fromhtml.parserimportHTMLParser追溯(最近的调用最后):File"program.py",line7,infromhtml.parserimportHTMLParserImportError:Nomodulenamed'html.parser';'htm