Georgetown-IR-Lab / QuickUMLS

System for Medical Concept Extraction and Linking
MIT License
369 stars 95 forks source link

install.py doesn't quite work with Python 2 #12

Closed slbayer closed 6 years ago

slbayer commented 6 years ago

When the target directory to create the QuickUMLS destination path doesn't exist, the user is prompted for whether to create the directory or not. The response is retrieved using input(), which only works in Python 3. The Python 2 equivalent is raw_input().

soldni commented 6 years ago

Thanks for the report! I clearly missed a from six.moves import input.