我用cx_Freeze创建了一个exe。
生成成功。
当我点击exe的时候,我得到:在no module named 'queue'
所以,我研究并添加了这个行:-在
^{pr2}$
现在我获取:-在no module named 'chardet'.
这是我得到的全部错误:Traceback (most recent call last):
File "C:\Users\pc\AppData\Local\Programs\Python\Python36-32\lib\site-pac
kages\cx_Freeze\initscripts\__startup__.py", line 14, in run
module.run()
File "C:\Users\pc\AppData\Local\Programs\Python\Python36-32\lib\site-pac
kages\cx_Freeze\initscripts\Console.py", line 26, in run
exec(code, m.__dict__)
File "normalapi_2103.py", line 1, in
File "C:\Users\pc\AppData\Local\Programs\Python\Python36-32\lib\site-pac
kages\requests-2.18.4-py3.6.egg\requests\__init__.py", line 44, in
import chardet
ModuleNotFoundError: No module named 'chardet'
我不知道要进口什么。。。在
我也试着增加'requests' and 'os' packages in setup.py.
但运气不好。。。在