标签:sudo where prefix root python ln -s client 建表 figure
git config --global user.name "john.liu"
git config --global user.email "john.liu@1cloudtech.com"
git config --global core.editor vim
git config --global http.sslVerify fals
find . -type d -empty -exec touch {}/.gitkeep \;
update mysql.user set authentication_string=password('123456') where user='root'and Host = 'localhost';
update user set plugin='mysql_native_password' where user='root';
flush privileges;
mysqldump -h 127.0.0.1 -u jdCartest_user -t -p jdCarsMalldbtest > /home/ycadmin/jd.sql
-t 只导出数据,不创建表结构
sudo apt-get install zlib1g-dev libssl-dev libsqlite3-dev libmysqlclient-dev
sudo mkdir python3.6
tar zxvf Python-3.6.5.tgz
./configure --prefix=/usr/local/python3.6/
make
sudo make install
sudo ln -s /usr/local/python3.6/bin/python3.6 /usr/bin/python3.6
sudo ln -s /usr/local/python3.6/bin/pip3.6 /usr/bin/pip3.6
--prefix 指定安装目录
标签:sudo where prefix root python ln -s client 建表 figure
原文地址:https://www.cnblogs.com/liuweiqc/p/10985072.html