When tools such as cx_freeze tell you to use a command such as "python setup.py build", where is this command issued? I have tried both the python command line and the Windows command prompt, but neither one worked with inputting that phrase.

link|improve this question

"but neither one worked", what error did you see when you tried "python setup.py build" at the Windows command prompt? – Johnsyweb Nov 20 '11 at 5:57
feedback

3 Answers

up vote 2 down vote accepted

Here is what :

  1. This goes on the windows command prompt.
  2. You first need to cd to the directory where your setup.py is situated.

For Eg: C:\folder\setup.py

On the command prompt :

  • C:\

  • cd folder

  • python setup.py build

Now, this will call python and pass the file setup.py and asks to build it.

link|improve this answer
Hmm, curious. I could have sworn that I did exactly that before and it didn't work... Well, now I feel foolish. Much thanks. – user1048917 Nov 20 '11 at 5:38
No.. problems.. this happens to everyone of us. ;) – Yugal Jindle Nov 20 '11 at 5:41
feedback

You issue such commands from the command prompt. You should make sure that you've changed into the directory containing setup.py before typing the command.

link|improve this answer
feedback

It works from your shell or command prompt, but it assumes that you have followed the appropriate guide(s) for generating a setup.py file for your code.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.