pip3的安装与升级
安装pip3:sudo apt-get install python3-pip
升级pip3:sudo pip3 install --upgrade pip
查看pip版本:pip -V
pip源更换
根目录创建.pip文件:mkdir ~/.pip
创建文件pip.conf:vim .pip/pip.conf
点击“i”键,进入编辑模式,复制信息:
[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
trusted-host = pypi.tuna.tsinghua.edu.cn
这个更换的是清华的源,清华的源5分钟同步官网一次,建议使用。
清华大学 https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云 http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
豆瓣(douban) http://pypi.douban.com/simple/
中国科学技术大学 http://pypi.mirrors.ustc.edu.cn/simple/
点击:“ESC”切换到命令行模式,输入“:wq”保存离开。
安装jupyter
sudo pip3 intall setuptools
sudo pip3 install jupyter
更换主题
sudo add-apt-repository ppa:noobslab/icons
sudo add-apt-repository ppa:noobslab/themes
sudo apt-get update
sudo apt-get install system76*
mysql安装
ubuntu上安装mysql非常简单只需要几条命令就可以完成。
1. sudo apt-get install mysql-server
2. apt-get isntall mysql-client
3. sudo apt-get install libmysqlclient-dev
安装过程中会提示设置密码什么的,注意设置了不要忘了,安装完成之后可以使用如下命令来检查是否安装成功:
sudo netstat -tap | grep mysql
通过上述命令检查之后,如果看到有mysql 的socket处于 listen 状态则表示安装成功。
登陆mysql数据库可以通过如下命令:
mysql -u root -p
如果你已经装好mysql的相关服务,那么直接使用如下命令即可安装:
sudo apt-get install mysql-workbench
安装tensorflow
根据自己的情况选择以下命令之一进行安装:
$ pip install tensorflow # Python 2.7; 仅支持CPU
$ pip3 install tensorflow # Python 3.n; 仅支持CPU
$ pip install tensorflow-gpu # Python 2.7; 支持CPU
$ pip3 install tensorflow-gpu # Python 3.n; 支持CPU
原文地址:https://www.cnblogs.com/lilinblogs/p/9865615.html