Contents
  1. 1. 常用软件
    1. 1.1. OS
    2. 1.2. Internet
    3. 1.3. Office
    4. 1.4. Coding
  2. 2. Linux 配置
    1. 2.1. /etc/profile
    2. 2.2. Python修改pip源 加快安装速度

常用软件

OS

MSDN itellyou
USTC Mirror

Internet

1
2
3
4
5
6
7
8
9
wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb
sudo dpkg -i google-chrome-stable_current_i386.deb

wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo dpkg -i google-chrome-stable_current_amd64.deb

# How do I use Google Chrome?Simply type the following command:
google-chrome
google-chrome http://www.baidu.com/

Office

Coding

Linux 配置

/etc/profile

Python修改pip源 加快安装速度

Linux下打开.pip/pip.conf,加入以下内容,以后使用sudo pip install xxxx的时候非常快:

[global]
index-url = http://mirrors.opencas.cn/pypi/

Windows下修改%HOME%\pip\pip.ini, 没有就自己创建一个

[global]
timeout = 60
index-url = http://mirrors.opencas.cn/pypi/

[install]
timeout = 30
find-links =
    http://pypi.douban.com
    http://pypi.v2ex.com/simple/