pyodbc 的 cx_freeze 错误

发布于 2024-10-31 13:35:42 字数 802 浏览 5 评论 0原文

如果您有一个简单的程序名称 pyodbcTest.py

import pyodbc
print "pass"

,然后使用 cx_freeze 编译它

cxfreeze --targe-dir=cxTest pyodbcTest.py

,然后运行该程序,则会抛出以下错误。

C:\temp\pythonWork\cxTest>pyodbcTest.exe                                                         
Traceback (most recent call last):                                                               
    File "C:\Python27\lib\site-packages\cx_Freeze\initscripts\Console.py", line 27, in <module>     
        exec code in m.__dict__                                                                     
    File "pyodbcTest.py", line 1, in <module>                                           
 RuntimeError: Unable to import decimal       

有什么想法吗?

if you have a simple program name pyodbcTest.py

import pyodbc
print "pass"

and then use cx_freeze to compile it

cxfreeze --targe-dir=cxTest pyodbcTest.py

and then run that program it throws the following error.

C:\temp\pythonWork\cxTest>pyodbcTest.exe                                                         
Traceback (most recent call last):                                                               
    File "C:\Python27\lib\site-packages\cx_Freeze\initscripts\Console.py", line 27, in <module>     
        exec code in m.__dict__                                                                     
    File "pyodbcTest.py", line 1, in <module>                                           
 RuntimeError: Unable to import decimal       

Any ideas?

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

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

发布评论

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

评论(1

浅暮の光 2024-11-07 13:35:42

我必须添加选项 --include-moduledecimal 来解决问题。不知道为什么它在冻结过程中无法自行找到那个,但它现在正在工作

I had to add the option --include-module decimal to solve the problem. Not sure why it could not find that one on its own during the freeze process, but its working now

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