##// END OF EJS Templates
add `-a` to easy_install command in libedit warning...
MinRK -
Show More
@@ -85,10 +85,10 b" if uses_libedit and sys.platform == 'darwin':"
85 " * corrupting long-lines",
85 " * corrupting long-lines",
86 " * failure to wrap or indent lines properly",
86 " * failure to wrap or indent lines properly",
87 "It is highly recommended that you install readline, which is easy_installable:",
87 "It is highly recommended that you install readline, which is easy_installable:",
88 " easy_install readline",
88 " easy_install -a readline",
89 "Note that `pip install readline` generally DOES NOT WORK, because",
89 "Note that `pip install readline` generally DOES NOT WORK, because",
90 "it installs to site-packages, which come *after* lib-dynload in sys.path,",
90 "it installs to site-packages, which come *after* lib-dynload in sys.path,",
91 "where readline is located. It must be `easy_install readline`, or to a custom",
91 "where readline is located. It must be `easy_install -a readline`, or to a custom",
92 "location on your PYTHONPATH (even --user comes after lib-dyload).",
92 "location on your PYTHONPATH (even --user comes after lib-dyload).",
93 "*"*78]),
93 "*"*78]),
94 RuntimeWarning)
94 RuntimeWarning)
General Comments 0
You need to be logged in to leave comments. Login now