67

I used cxfreeze to create a Windows executable from planrequest.py. It seemed to work ok, but when I run the exe file I get NameError: name 'exit' is not defined

name exit is not defined in python states that the fix is to use import sys. However, I use import sys. The code runs fine as a python script (as in, I extensively tested the command line arguments before compiling to an executable.)

import socket
import sys

if len(sys.argv) == 1:
    print("Usage:")
    print("PlanRequest [Request String] [Server IP (optional: assumes 127.0.0.1 if omitted)]")
    exit()

#[do stuff with the request]
Tim
  • 2,701
  • 3
  • 26
  • 47

2 Answers2

101

Importing sys will not be enough to make exit live in the global scope.

You either need to do

from sys import exit
exit()

or

import sys
sys.exit()

Note that, as you are also using argv, in the first case you should do from sys import argv,exit

b1ch0u
  • 1,158
  • 1
  • 7
  • 9
  • 1
    This is the answer, and this is truly a pain. If `sys.exit` is required, I feel like the IDE should tell me its required. Maybe I'm just used to more...solidified?...languages. – Tim Jul 12 '17 at 20:15
  • A good IDE should tell you one way or another. In pycharm, if I type `import sys` then `exit()` it prints me a warning under the import line "ununsed import statement" – b1ch0u Jul 12 '17 at 20:36
14

You have to apply the function to sys:

from sys import exit
exit()

because exit is the function itself, you need to call it with ()

developer_hatch
  • 15,898
  • 3
  • 42
  • 75