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
I was unable to load lispy-python.py, with the following error (on Mac OS X)
lispy-python.py
raise Exception('''libedit based readline is known not to work, see etc/PROBLEMS under \"In Inferior Python mode, input is echoed\".''')
I replaced all instances of import readline with import gnureadline as readline and was finally able to use lispy again.
import readline
import gnureadline as readline
lispy
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was unable to load
lispy-python.py
, with the following error (on Mac OS X)raise Exception('''libedit based readline is known not to work, see etc/PROBLEMS under \"In Inferior Python mode, input is echoed\".''')
I replaced all instances of
import readline
withimport gnureadline as readline
and was finally able to uselispy
again.The text was updated successfully, but these errors were encountered: