Aptana Studio 无法解析导入,但可以工作
我刚刚安装了 suds 并在 Aptana Studio。虽然,似乎无法通过用红色下划线来解析 from suds.client import Client
,但以下代码仍然有效。因此,我决定通过运行相同的代码来安装 Eclipse-Plugin for Pydev。这次 Eclipse Plugin 可以按预期解析 Client。 为什么 Aptana Studio 无法解析此类,与 Eclipse Plugin 不同?这是一种错误,还是我在安装 suds 软件包时搞砸了一些东西?
I have just installed suds and given a try for it in Aptana Studio. While, it seems not to resolve from suds.client import Client
by underscoring it in red, the following code still works. So, I have decided to install Eclipse-Plugin for Pydev by running the same code. This time Eclipse Plugin can resolve Client as expectedly.
Why can't Aptana Studio resolve this class, unlike Eclipse Plugin? Is this kind of a bug, or have I screwed something while installing suds package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经从 Window->Preferences->PyDev 中删除并自动配置了 python 解释器,它现在可以工作了。
我原本打算删除这样一个简单的问题,但将其留在这里以供其他人遇到类似的情况。
I have removed and Auto Configured python interpreter from Window->Preferences->PyDev and it works now.
I was to delete such a simple question, but leave it here for the similar situation for others.