Python运维

一、生态工具

1. pip工具(包管理器,import 包名)

pip3 list 					# 列出已安装的安装包
pip3 search 关键词			# 查找线上含有关键词的安装包
pip3 install 包名称			# 安装软件包
pip3 install 包名称 -i https://pypi.douban.com/simple/	# 用豆瓣的镜像安装(更快)
pip3 uninstall 包名称		# 卸载软件包

2. 按F5自动调试

将此段放在用户主目录下/root/.vimrc文件内

""""""""""""""""""""""
    "Quickly Run
    """""""""""""""""""""""
    map  :call CompileRunGcc()
    func! CompileRunGcc()
        exec "w"
        if &filetype == 'c'
            exec "!g++ % -o %<"
            exec "!time ./%<"
        elseif &filetype == 'cpp'
            exec "!g++ % -o %<"
            exec "!time ./%<"
        elseif &filetype == 'java'
            exec "!javac %"
            exec "!time java %<"
        elseif &filetype == 'sh'
            :!time bash %
        elseif &filetype == 'python'
            exec "!time python3.6 %"
        elseif &filetype == 'html'
            exec "!firefox % &"
        elseif &filetype == 'go'
        "   exec "!go build %<"
            exec "!time go run %"
        elseif &filetype == 'mkd'
            exec "!~/.vim/markdown.pl % > %.html &"
            exec "!firefox %.html &"
        endif
    endfunc

你可能感兴趣的:(Linux)