目录
pip国内镜像源:
conda 国内镜像源 Ubuntu系统
Python包的安装
1,pip install [本地安装]:
2,寻找特定版本的python包,比如tensorflow包,先搜寻在安装
1. omgtools包的安装 2步:(Ubuntu系统)
2.pip install missingno 成功 缺失值的可视化
3.import cv2 成功
4.pip install pandas_profiling 成功;
5. pip install tqdm6. pip install folium :画地图的库,每个国家的大概形状,视频里探索性数据分析里面有,7. pip install pivottablejs
8 安装pytorch库,
9 安装软件graphviz以及Python模块
windows下处理这个问题
~$ pip install tensorflow-gpu -i https://pypi.tuna.tsinghua.edu.cn/simple/
其他国内镜像
其他国内镜像还有
http://pypi.hustunique.com/
http://pypi.sdutlinux.org/
https://pypi.mirrors.ustc.edu.cn/simple/
http://mirrors.aliyun.com/pypi/simple/
http://pypi.douban.com/simple/
---------------------
conda源更改:
conda源国内只有清华有,
修改源只需输入如下两条命令:
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
---------------------
先下载安装包
http://www.lfd.uci.edu/~gohlke/pythonlibs/#xgboost 这里面基本上我们能用的包都有找到对应的符合我的系统环境的版本,Python3.6,windows
Python包安装新方法:========不用在线安装了
将.whl结尾的比如numpy.whl 文件下载到本地,再用进入下载好的目录 pip install numpy.whl 安装就好了
conda search tensorflow-gpu 查看对应的cuda和cudnn版本,
anaconda search -t conda tensorflow 这个是寻找TensorFlow版本 关注点在版本和平台,找到名字复制下来比如 n-west/tensorflow-cpu
然后输入命令 anaconda show n-west/tensorflow-cpu 就会告诉我应该怎样安装这个版本的tensorflow
To install this package with conda run:
conda install --channel https://conda.anaconda.org/n-west tensorflow-cpu
pip install omg-tools
conda install -c conda-forge ipopt
github-omgtools网址
missingno这个包的某一些功能需要依赖geoplot ,安装安装geoplot 安装完成后也不能使用特定的画图功能msno.geoplot(datefram, x='LONGITUDE', y='LATITUDE')????????????
conda install geoplot -c conda-forge
windows 包的安装
pip install opencv-python
pip3 install opencv-python
失败 :写成Profiling出现:Microsoft Visual C++ 14.0 is required 的解决方案
方法:安装一个软件即可,在本地已经下载,百度网盘里也有软件包里visualcppbuildtools_full.exe
一般使用conda安装了,去官网找安装代码安装,使用conda镜像源和pip不太一样,按照下面博客来没问题,否则太慢了。
https://blog.csdn.net/watermelon1123/article/details/88122020
安装好了以后测试代码好不好用。import torch 安照下面代码来,没问题,
https://blog.csdn.net/lxytsos/article/details/90321963
9. Python在画图时候有时候出现如下错误
Exception: “dot” not found in path in python
本人在Ubuntu下发现的这个错误,解决方案:
sudo apt-get install graphviz
conda install pydot-ng
conda install graphviz
解决办法:
安装软件:graphviz-2.38.msi
配置环境变量:把bin目录加到环境变量里面
测试之后还是报错,后来发现,错误提示是找不到“dot”程序,而不是"dot.exe"程序,这就好办了,找到pydot的源码,在pydot.py中找到类Dot
源码寻找方法:找到py文件,找到如下这一行,修改保存,完事.
import pydot
print pydot.__file__ # 打印出来源码的路径
# C:\ProgramData\Anaconda2\lib\site-packages\pydot.pyc
修改self.prog = 'dot'为self.prog = 'dot.exe',之后测试,成功运行例子