SPSS Python 错误

发布于 2024-09-10 06:15:25 字数 729 浏览 6 评论 0原文

尝试从外部 Python IDE 运行 SPSS 时出现以下错误。

import spss

产生以下错误

Traceback (most recent call last):
  File "C:\Documents and Settings\USER\workspace\SPSS\src\NE ASQ 2010.py", line 6, in <module>
    import spss
  File "C:\Python26\Lib\site-packages\spss180\spss\spss.py", line 16, in <module>
    error = errCode()
  File "C:\Python26\Lib\site-packages\spss180\spss\errMsg.py", line 24, in __init__
    self.errMsg = errTable['okay'][str(0)]
KeyError: 'okay'

运行 Python Essentials 插件,没有错误。有趣的是,当我以语法运行它时,我没有收到错误

BEGIN PROGRAM PYTHON.
import spss
num = spss.GetVariableCount()
print num
END PROGRAM.

任何帮助将不胜感激。

布罗克

Getting the following error when trying to run SPSS from an external Python IDE.

import spss

yields the following error

Traceback (most recent call last):
  File "C:\Documents and Settings\USER\workspace\SPSS\src\NE ASQ 2010.py", line 6, in <module>
    import spss
  File "C:\Python26\Lib\site-packages\spss180\spss\spss.py", line 16, in <module>
    error = errCode()
  File "C:\Python26\Lib\site-packages\spss180\spss\errMsg.py", line 24, in __init__
    self.errMsg = errTable['okay'][str(0)]
KeyError: 'okay'

Ran the Python essentials plug-in with no errors. Funny thing is that I dont get an error when I run this in a syntax

BEGIN PROGRAM PYTHON.
import spss
num = spss.GetVariableCount()
print num
END PROGRAM.

Any help will be much appreciated.

Brock

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南巷近海 2024-09-17 06:15:25

我相信我已经解决了这个问题。我需要配置 Eclipse 以查看安装 SPSS/Python 插件时创建的外部 python 模块。配置项目时我必须设置对模块的引用。

一旦我这样做了,看起来我就可以开始运行了!

I believe I figured out the issue. I needed to configure Eclipse to see the external python modules that are created when you install the SPSS/Python plugin. I had to set a reference to the modules when configuring the project.

Once I did that, it looks like I am up and running!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文