Почему в этой убунте в питонной командной строке не работает автодополнение? А в зюзе из коробки работает.
добавь его сам :)
и куда его добавлять?
потому что его там нет. ставь ipython.
asmer@iridium ~ $ cat ~/.pythonstartup.py #!/usr/bin/env pythonimport timeimport calendarimport sysprint 'hello asmer'sys.ps1 = 'python interactive # 'sys.ps2 = 'don\'t forget to indent # 'import os, readline, rlcompleter, atexithistory_file = os.path.join(os.environ['HOME'], '.python_history')try: readline.read_history_file(history_file)except IOError: passreadline.parse_and_bind("tab: complete")readline.set_history_length(1000)atexit.register(readline.write_history_file, history_file)del os, readline, rlcompleter, atexit, history_file, __file__
О! вот именно это я и спрашивал. спасибо!
пушо надо доставить пакет bash-completion?
bash тут причем?
а, бля, я питон не увидел
пстачую этого пыхописателя
добавь его сам :)
и куда его добавлять?
потому что его там нет. ставь ipython.
asmer@iridium ~ $ cat ~/.pythonstartup.py
#!/usr/bin/env python
import time
import calendar
import sys
print 'hello asmer'
sys.ps1 = 'python interactive # '
sys.ps2 = 'don\'t forget to indent # '
import os, readline, rlcompleter, atexit
history_file = os.path.join(os.environ['HOME'], '.python_history')
try:
readline.read_history_file(history_file)
except IOError:
pass
readline.parse_and_bind("tab: complete")
readline.set_history_length(1000)
atexit.register(readline.write_history_file, history_file)
del os, readline, rlcompleter, atexit, history_file, __file__
О! вот именно это я и спрашивал. спасибо!
пушо надо доставить пакет bash-completion?
bash тут причем?
а, бля, я питон не увидел
пстачую этого пыхописателя