Port 51347 seems to be used by another program
问题 On running the sample code given in the dispy documentation def compute(n): import time, socket time.sleep(n) host = socket.gethostname() return (host, n) if name == ' main ': import dispy, random cluster = dispy.JobCluster(compute) jobs = [] for i in range(10): # schedule execution of 'compute' on a node (running 'dispynode') # with a parameter (random number in this case) job = cluster.submit(random.randint(5,20)) job.id = i # optionally associate an ID to job (if needed later) jobs.append