Loading...
conda下载 https://docs.conda.io/en/latest/miniconda.html国内镜像conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free conda config --add channels https://mirrors.tuna.tsingh...
cd /usr/local wget https://www.python.org/ftp/python/3.7.0/Python-3.7.0.tgz tar -zxvf Python-3.7.0.tgz mkdir /usr/local/python37 cd Python-3.7.0 ./configure --prefix=/usr/local/python37 make &&...
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py sudo python get-pip.py
一、创建user表use example; create TABLE `user` ( `id` int(11) NOT NULL, `last_name` varchar(45) DEFAULT NULL, `first_name` varchar(45) DEFAULT NULL, `sex` set('M','F') DEFAULT NULL, `age` tin...