kaggle房价预测:使用Python综合探索数据 January 23, 2018 > 学习[COMPREHENSIVE DATA EXPLORATION WITH PYTHON](https://www.kaggle.com/pmarcelino/comprehensive-data-exploration-with-python "COMPREHENSIVE DATA EXPLORATION WITH PYTHON")笔记 **'The most difficult thing in life is to know yourself'** - 阅读剩余部分 -
Python数据处理常用工具包安装 January 22, 2018 ```bash pip install numpy # jupyter 依赖很多,包括numpy pip install jupyter pip install matplotlib # seaborn依赖scipy numpy pip install seaborn pip install scikit-learn pip install pandas pip install scipy pip install opencv-python pip install scikit-image ```
Ubuntu下Python设置pip使用国内源站 January 22, 2018 在用户目录下建立`.pip/pip.conf`文件 ```bash cd ~/ && mkdir .pip cd .pip && nano pip.conf ``` 写入以下配置并保存即可 ```bash [global] index-url = https://pypi.douban.com/simple/ ``` 当然,还可以选择使用清华,阿里等源站 ``` 清华:https://pypi.tuna.tsinghua.edu.cn/simple 阿里: https://mirrors.aliyun.com/pypi/simple ``` ![](/images/2018/01/4041592246.png)