How To Install Py2exe In Ubuntu

I downloaded the actual py2exe package.But I've no idea how to get it in my system. I mean I can follow the tutorial a 100% but I can't find anything how to install py2exe to my kubuntu 11.10.I also can't find a py2exe.py which I could include to my workingfolder.
Could some please help me the project has to be finish till tomorrow?
It concentrates on installing Ubuntu alongside a pre-existing version Windows so that. A utility available within the Ubuntu installation process. You cannot use py2exe on Ubuntu or Linux in general. You cannot use it on Mac either. It is a Windows-only utility! You have to use it within Windows, whether that be in a Windows virtual machine or an actual Windows machine.
Thanks for your help
cheers,Chris
2 Answers
Py2exe has to run on Windows, you can not run it in Linux. (Maybe wine can help, but I'm not sure)
You need a way to generate a certificate file to use py2exe. Try pyinstaller instead.
Korean Drama Index You will find 327 posts in the category K-Drama on this web.
Not the answer you're looking for? Browse other questions tagged pythoninstallpy2exe or ask your own question.
I am installing py2exe using easy_install
. here is what I typed:
I am using linux mint cinnamon 15. This is what I get, though:
[Errno 13] Permission denied: '/usr/local/lib/python2.7/dist-packages/test-easy->install-3460.pth'
Install Py2exe Python 3
The installation directory you specified (via --install-dir, --prefix, or the distutils default setting) was:
/usr/local/lib/python2.7/dist-packages/
Perhaps your account does not have write access to this directory? If the installation directory is a system-owned directory, you may need to sign in as the administrator or 'root' account. If you do not have administrative access to this machine, you may wish to choose a different installation directory, preferably one that is listed in your PYTHONPATH environment variable.
For information on other options, you may wish to consult the documentation at:
Please make the appropriate changes for your system and try again.
then I also tried pygame, but same error. can anyone help me install py2exe and report the problem? I am an administrator.

Py2exe
1 Answer
Use it with sudo, like:
sudo easy_install py2exe
In short, sudo
is an awesome command that provides whatever you type after it with the root permissions. So you have enough permissions to install it with easy_install.