安装好vim之后,
需要把自己的vimrc拷贝至~/.vimrc,(可以通过vim -V看出source的过程)。
需要升级ctags,用如下命令:
apt-get install ctags
这样才能支持 -L选项,即从文件中读取文件列表。
需要安装cscope
需要把下面行:
"export PATH=$PATH:/home/qianjiang/work
原创
2010-03-31 14:04:59
751阅读
1、到 Sun 的官网下载://.oracle.com/technetwork/java/javase/downloads/jdk7-downloa...
转载
2014-11-25 22:43:00
323阅读
2评论
https://medium.com/high-performance-network-programming/how-to-setup-and-configure-mptcp-on-ubuntu-c423dbbf76cc How to setup and configure mptcp on Ub
转载
2024-07-15 09:48:42
77阅读
题记:写这篇博客要主是加深自己对javaapplication的认识和总结实现算法时的一些验经和训教,如果有错误请指出,万分感谢。Now there are many hosting server for people to choose to host their own apps or website. And sometimes normal web hosting can not exactly fulfil your requirements. So VPS is a good option, with VPS you can setup anything you want just
转载
2013-06-24 21:31:00
103阅读
2评论
This is to setup a developement environment for Ruby 1.87 an
原创
2022-01-05 16:05:18
100阅读
To record of setting up the Android system in Ubuntu,1, enable the copy in and out of XTerm
原创
2022-08-22 18:05:22
87阅读
compile the android source code one branch, android-4.4.3_r1.1
原创
2022-08-23 08:43:10
44阅读
1. 使用 easy_installeasy_install 这应该是最古老的包安装方式了,目前基本没有人使用了。下面是 easy_install 的一些安装示例# 通过包名,从PyPI寻找最新版本,自动下载、编译、安装$ easy_install pkg_name# 通过包名从指定下载页寻找链接来安装或升级包$ easy_install 
转载
2023-10-25 21:26:59
826阅读
Ubuntu 9.10- Setup Evolution for hotmail
Evolution类似Windows下面Outlook的角色。
下面简述对于hotmail邮箱的设置。
比如邮箱地址:example@hotmail.com
Evolution => Preferences => "Mail Accounts"
如果没有,就要增加。我
原创
2010-03-04 15:01:10
1479阅读
This article covers how to setup wordpress with docker using docker-compose quickly. WordPress requires LAMP or LEMP stack b
原创
2023-07-17 13:37:04
75阅读
://stackoverflow.com/questions/23182765/how-to-install-ia32-libs-in-ubuntu-14-04-ltssudo -icd /etc/apt/sources.list.d//注意是:old-releases.ubuntu.com...
转载
2014-09-01 19:57:00
93阅读
2评论
介绍setuptools是python中的包安装和分发工具。// 通过源码安装包
python setup.py installsetuptools中主要包含如下两个函数:from setuptools import setup, find_packages一、setup函数setup函数的简单示例:setup(
name="demo",
version="1.0",
au
转载
2023-06-26 11:48:29
1085阅读
一、基础复习函数的基本用法 创建和调用函数 函数的形参与实参等等函数的几种参数 位置参数、关键字参数、默认参数等函数的收集参数*args **args 解包参数详解函数中参数的作用域 局部作用域 全局作用域 global语句 嵌套函数 nonlocal语句等详解函数的闭包(工厂函数)lambda()函数表达式、map()、filter()函数详解生成器的定义、使用和产生生成器的两种方法详解函数的递
转载
2024-08-12 11:15:59
43阅读
import setuptools
# In python < 2.7.4, a lazy loading of package `pbr` will break
# setuptools if some other modules registered functions in `atexit`.
# solution from: http://bugs.python.org/issue
转载
2024-03-08 14:15:52
249阅读
python的第三方模块越来越丰富,涉及的领域也非常广,如科学计算、图片处理、web应用、GUI开发等。当然也可以将自己写的模块进行打包或发布。一简单的方法是将你的类包直接copy到python的lib目录,但此方式不便于管理与维护,存在多个python版本时会非常混乱。现介绍如何编写setup.py来对一个简单的python模块进行打包。一、编写模块 进入项目目录 #cd /home/pyset
转载
2024-02-06 21:56:15
123阅读
使用turtle的setup函数,可以在屏幕中生成一个窗口(窗体),设置窗体的大小和位置,这个窗口就是画布的范围。
画布的最小单位是像素,屏幕的坐标系以左上角为原点(0,0)分布。
转载
2023-06-16 11:32:52
969阅读
谁能解释一下, setup.py是什么,如何配置或使用它? #1楼 setup.py是一个python文件,通常告诉您要安装的模块/软件包已与Distutils打包并分发,Distutils是分发Python模块的标准。 这使您可以轻松安装Python软件包。 通常写就足够了: $ pip install . pip将使用setup.py安装模块。 避免直接调用setup.py 。 https
转载
2024-03-10 13:32:51
205阅读
Windows下如何构建和发布Python模块的方法。主要是对setup里参数进行了一些测试 说明: 1、模块其实就是一个功能函数。lyccode.py 因为文件名是nester,模块名nester.py,setup里的参数name = 'nester',py_modules = ['nes
转载
2023-10-31 17:57:16
85阅读
1. ELDK安装mount -o loop mips-2007-01-21.iso ~/tmpcd ~/tmp./install -d /opt/eldkln -s /opt/eldk /usr/local/eldkln -s /opt/eldk /eldk2. tuxbuilder-1.0 安装cd /opttar -xvf tuxbuilder.tar 3. tools for build
原创
2010-03-08 14:33:24
1121阅读
文章目录1 Main command lines2 Reference1 Main command lines# setup vimrcgit clone --depth=1 https://github.com
原创
2022-09-08 23:57:30
119阅读