从鼻子中删除破碎的插件

时间:2014-06-18 03:21:32

标签: python plugins uninstall nose

我尝试安装一个名为html-output的鼻子插件。我用了命令

pip install .

在setup.py文件所在的目录中。 似乎工作正常,但现在运行nosetests我得到以下内容:

/Library/Frameworks/Python.framework/Versions/3.3/lib/python3.3/site-packages/nose/plugins/manager.py:395: RuntimeWarning: Unable to load plugin html-output = htmloutput.htmloutput:HtmlOutput: No module named 'version'
  RuntimeWarning)

我只是想摆脱它。我试过了

pip uninstall .

但那没用。我甚至尝试去除鼻子并重新安装它,但我仍然收到警告。不知道该怎么做。

1 个答案:

答案 0 :(得分:2)

按名称删除包裹:

pip uninstall nosehtmloutput

(假设您使用的是nose-html-output包)