安装tree文件查看工具
sudo apt install tree
安装GCC工具链
sudo apt-get install build-essential
安装python
(从python官网下载解压)
wget https://www.python.org/ftp/python/3.6.4/Python-3.6.4.tar.xz
xz -d Python-3.6.4.tar.xz
tar -xvf Python-3.6.4.tar
cd Python-3.6.4
./configure
make
sudo make install
(安装pyenv管理多版本python:http://www.cnblogs.com/ningvsban/p/4384995.html)
给Ubuntu自带python3版本安装pip并用pip安装django
sudo apt-get install python3-pip
sudo pip3 install django
安装git
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git