- wget https://www.python.org/ftp/python/3.5.6/Python-3.5.6.tar.xz
- tar xvJf *.tar.xz
- ./configure --prefix= /opt/python3.5 --enable-shared #这个路径很关键,是bin的调用路径
- make
- make install
- ln -s /usr/python3.5/bin/python3 /usr/bin/python3 #创建软链接
- Reference: https://www.cnblogs.com/longxiang92/p/5829206.html
- 关键是bin的路径得选好
- Reference:https://www.cnblogs.com/dongml/p/8719421.html
- vim ./.vimrc
- :set nu
- reboost 重启
- conda
- activate learn
- deactivate learn
- git fetch --all && git reset --hard origin/master && git pull #远程覆盖本地
注册:https://blog.csdn.net/u014044812/article/details/78727496