¡@

Home 

python Programming Glossary: cx

How to compile python script to binary executable

http://stackoverflow.com/questions/12339671/how-to-compile-python-script-to-binary-executable

convert oldlogs.py to exe. python compilation executable cx freeze share improve this question Or use PyInstaller as..

Compiling with Python 3.3

http://stackoverflow.com/questions/14512936/compiling-with-python-3-3

recently started programming. I don't know how to use the cx_freeze script. I don't know how to make the word 'python' work.. file that can work without Python. I haven't had luck with cx_freeze and nothing else seems to work with 3.3. Can anyone tell.. 3.3. Can anyone tell me wher to start python command line cx freeze share improve this question Unfortunately cx_freeze..

Error when freezing pandas/NumPy 1.7.0 code with cx_Freeze

http://stackoverflow.com/questions/14969552/error-when-freezing-pandas-numpy-1-7-0-code-with-cx-freeze

when freezing pandas NumPy 1.7.0 code with cx_Freeze I am trying to freeze a Python script with cx_Freeze... with cx_Freeze I am trying to freeze a Python script with cx_Freeze. The script makes use of pandas. When I run the executable.. makes use of pandas. When I run the executable created by cx_Freeze I get the following Traceback ... File C Python27 lib..

Making a portable (exe) with Python 3.1?

http://stackoverflow.com/questions/1505783/making-a-portable-exe-with-python-3-1

outdated. python py2exe share improve this question cx_freeze has worked for me. Here's a link. The page claims to..

ImportError: cannot import name MAXREPEAT with cx_Freeze

http://stackoverflow.com/questions/16301735/importerror-cannot-import-name-maxrepeat-with-cx-freeze

cannot import name MAXREPEAT with cx_Freeze I'm running into an issue with cx_Freeze when running.. MAXREPEAT with cx_Freeze I'm running into an issue with cx_Freeze when running a frozen application works fine unfrozen.. call last File usr local lib python2.7 site packages cx_Freeze initscripts Console.py line 27 in module exec code in..

Help installing cx_Oracle

http://stackoverflow.com/questions/1711408/help-installing-cx-oracle

installing cx_Oracle I'm trying to install the cx_Oracle for Python 2.6 but.. installing cx_Oracle I'm trying to install the cx_Oracle for Python 2.6 but it is failing. I don't know enough.. myself. This is what is output on the command line C pydev cx_Oracle 5.0.1 C python26 python setup.py install running install..

cx_Freeze ImportError: cannot import name

http://stackoverflow.com/questions/2223128/cx-freeze-importerror-cannot-import-name

ImportError cannot import name I'm trying create an.. in tkinter using the ttk module. I made an exe with cx_freeze but when I run the app in the console it gives me the.. most recent call last File C Python31 lib site packages cx_Freeze 7 in module exec code m.__dict__ File sarcalc_tk.py line..

How can i bundle other files when using cx_freeze?

http://stackoverflow.com/questions/2553886/how-can-i-bundle-other-files-when-using-cx-freeze

can i bundle other files when using cx_freeze I'm using Python 2.6 and cx_Freeze 4.1.2 on a Windows.. other files when using cx_freeze I'm using Python 2.6 and cx_Freeze 4.1.2 on a Windows system. I've created the setup.py.. to build my executable and everything works fine. When cx_Freeze runs it movies everything to the build directory. I have..

Hide console window with wxPython and cxFreeze

http://stackoverflow.com/questions/2880316/hide-console-window-with-wxpython-and-cxfreeze

console window with wxPython and cxFreeze I'm developing a Python application using wxPython and.. a Python application using wxPython and freezing it using cxFreeze. All seems to be going fine apart from this following.. this following bit When I run the executable created by cxFreeze a blank console window pops up. I don't want to show it...

Freezing a dual-mode (GUI and console) application using cx_Freeze

http://stackoverflow.com/questions/2883205/freezing-a-dual-mode-gui-and-console-application-using-cx-freeze

a dual mode GUI and console application using cx_Freeze I've developed a Python application that runs both in.. it runs in the GUI mode. I've managed to freeze this using cx_Freeze. I had some problems hiding the black console window.. so I modified my setup.py script like this import sys from cx_Freeze import setup Executable base None if sys.platform win32..

Iterating through a scipy.sparse vector (or matrix)

http://stackoverflow.com/questions/4319014/iterating-through-a-scipy-sparse-vector-or-matrix

row col in zip rows cols row col x row col def using_coo x cx scipy.sparse.coo_matrix x for i j v in zip cx.row cx.col cx.data.. using_coo x cx scipy.sparse.coo_matrix x for i j v in zip cx.row cx.col cx.data i j v def using_tocoo x cx x.tocoo for i.. x cx scipy.sparse.coo_matrix x for i j v in zip cx.row cx.col cx.data i j v def using_tocoo x cx x.tocoo for i j v in..

cx_freeze python single file?

http://stackoverflow.com/questions/4999567/cx-freeze-python-single-file

python single file I've been using cx_freeze for a while.. python single file I've been using cx_freeze for a while now and there is one thing I've really wanted.. same directory. How can I accomplish this Thanks. python cx freeze share improve this question Isn't this what bbfreeze..

Can EXE generated by cx_freeze be completely decompiled back to readable Python code?

http://stackoverflow.com/questions/5497399/can-exe-generated-by-cx-freeze-be-completely-decompiled-back-to-readable-python

EXE generated by cx_freeze be completely decompiled back to readable Python code.. desktop programs with Python PySide and found that cx_freeze works very good in converting my python code into executables.. question is can someone else decompile an EXE generated by cx_freeze back to fully readable code as if my original source..

exe error with cx_freeze

http://stackoverflow.com/questions/5603287/exe-error-with-cx-freeze

error with cx_freeze Hey am relatively new to compiling python scripts to.. new to compiling python scripts to exe. Im using cx_freeze to compile my scripts and once its built i run the exe.. a module named re in python and a module named re in cx_freeze module My setup file looks like from cx_Freeze import..

INSERT not working in cx_oracle when used with execute. How to get it working?

http://stackoverflow.com/questions/5642708/insert-not-working-in-cx-oracle-when-used-with-execute-how-to-get-it-working

not working in cx_oracle when used with execute. How to get it working I am new.. when used with execute. How to get it working I am new to cx_oracle. I have established a connection and I am able to create.. help would be appreciated. Thanks in advance. J python cx oracle oracle11gr2 share improve this question Just add..

How can I use the py2exe to change the python3.2's code to exe [duplicate]

http://stackoverflow.com/questions/6425869/how-can-i-use-the-py2exe-to-change-the-python3-2s-code-to-exe

much dead unless you are using 2.7 or less. 1 Look into cx freeze 2 Install cx freeze 3 Create your script test.py print.. you are using 2.7 or less. 1 Look into cx freeze 2 Install cx freeze 3 Create your script test.py print Hello there anyone.. else hate hello worlds 4 Create your setup.py file from cx_Freeze import setup Executable setup name hatefulworld version..

Python 3 project into exe?

http://stackoverflow.com/questions/7426127/python-3-project-into-exe

and found out that py2exe doesn't support Python 3. cxfreeze does but I can't figure out how to make a single executable.. Any help is appreciated. python python 3.x py2exe cx freeze share improve this question You can use cxfreeze.. cx freeze share improve this question You can use cxfreeze to make the executable and other files it creates compress..