python 之ubuntu开发环境vim 和 ipython
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 之ubuntu开发环境vim 和 ipython相关的知识,希望对你有一定的参考价值。
传说ubuntu是开发必备,也想来试试手;
ubuntu16.04 自带python2.7 和 3.5两个版本 和vim编辑器
一、网上查了很多资料就归结就是对pydiction插件的安装使用,实现tab自动补齐;
#默认ubuntu是没有远程ssh所以需要安装以下software
sudo apt-get install openssh-server wget tree unzip ipython -y wget https://github.com/rkulla/pydiction/archive/master.zip unzip -q master mv pydiction-master pydiction mkdir -p ~/.vim/tools/pydiction cp -r pydiction/after ~/.vim cp pydiction/complete-dict ~/.vim/tools/pydiction
二、确保文件结构如下:
# tree ~/.vim /root/.vim ├── after │ └── ftplugin │ └── python_pydiction.vim └── tools └── pydiction └── complete-dict
三、创建~/.vimrc,确保其中内容如下:
# vim ~/.vimrc filetype plugin on let g:pydiction_location = ‘~/.vim/tools/pydiction/complete-dict‘
四、python交互模式下自动补齐
创建如下文件:
# vim ~/.pythonstartup # python startup file #!/usr/bin/env python import sys import readline import rlcompleter import atexit import os # tab completion readline.parse_and_bind(‘tab: complete‘) # history file histfile = os.path.join(os.environ[‘HOME‘], ‘.pythonhistory‘) try: readline.read_history_file(histfile) except IOError: pass atexit.register(readline.write_history_file, histfile) del os, histfile, readline, rlcompleter 1
添加环境变量:
echo ‘export PYTHONSTARTUP=~/.pythonstartup‘ >> ~/.bash_profile
重新登陆shell,输入python命令进入交互模式,就可以用Tab键进行补全。
参考:http://www.jb51.net/article/58009.htm
以上是关于python 之ubuntu开发环境vim 和 ipython的主要内容,如果未能解决你的问题,请参考以下文章
在ubuntu 15.10 上配置vim ,用来进行python 开发