We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It might be a problem of java. Try this:
def __init__(self): self.meteor_cmd = ['java', '-jar', '-Xmx2G', METEOR_JAR, '-', '-', '-stdio', '-l', 'en', '-norm'] self.meteor_p = subprocess.Popen(' '.join(self.meteor_cmd),\ # change this line cwd=os.path.dirname(os.path.abspath(__file__)), \ stdin=subprocess.PIPE, \ stdout=subprocess.PIPE, \ stderr=subprocess.PIPE,\ shell=True) # Used to guarantee thread safety self.lock = threading.Lock()
Originally posted by @brucejing-github in #17 (comment)
The text was updated successfully, but these errors were encountered:
It was changed, but it didn't work
Sorry, something went wrong.
You need to find the Java library file in your environment
No branches or pull requests
It might be a problem of java.
Try this:
Originally posted by @brucejing-github in #17 (comment)
The text was updated successfully, but these errors were encountered: