python 常用库及安装使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 常用库及安装使用相关的知识,希望对你有一定的参考价值。

#win10 + python3.5.2

#all use 管理员权限
#pip 更新
python -m pip install --upgrade pip

pip install xxx

pip uninstall xxx

#安装 numpy,scipy,matplotlib, networkx
#!!!!如果 pip 直接 install 报错,可从该网址下载 whl包 http://www.lfd.uci.edu/%7Egohlke/pythonlibs/
# numpy+mkl 捆绑安装
pip install "numpy-1.12.1+mkl-cp35-cp35m-win_amd64.whl"
pip install scipy-0.19.0-cp35-cp35m-win_amd64.whl
pip install matplotlib
pip install networkx
pip install theano

 

numpy+scipy

https://docs.scipy.org/doc/

https://docs.scipy.org/doc/numpy-dev/user/quickstart.html

http://old.sebug.net/paper/books/scipydoc/numpy_intro.html#id3

 

 

 

networkx

https://networkx.readthedocs.io/en/stable/reference/index.html

#algorithms list

https://networkx.readthedocs.io/en/stable/reference/algorithms.html

https://networkx.readthedocs.io/en/stable/tutorial/tutorial.html#directed-graphs

https://networkx.readthedocs.io/en/stable/examples/

 

 

matplotlib

http://matplotlib.org/contents.html#

http://matplotlib.org/examples/index.html

 

Python Graph Libraries

https://wiki.python.org/moin/PythonGraphApi

https://wiki.python.org/moin/PythonGraphLibraries

https://graph-tool.skewed.de/

 

import networkx as nx
g = nx.Graph()

ng = nx.DiGraph()

g.add_nodes_from("ABCDEF")

g.add_edges_from([(‘A‘,‘C‘),(‘B‘,‘C‘),(‘C‘,‘D‘),(‘A‘,‘E‘),(‘E‘,‘D‘),(‘E‘,‘F‘),(‘A‘,‘F‘)])

nx.top...

nx.find_cycle(...

 

 

 

import numpy as np
np.zeros((4,5))

 














以上是关于python 常用库及安装使用的主要内容,如果未能解决你的问题,请参考以下文章

PyCharm 如何安装python第三方库及插件

Linux下安装python的gmpy2库及遇到无法定位软件包的解决办法

python 常用的标准库及第三方库

Python基础库及机器学习笔记

PHP基础库及扩展库安装

178Linux常用命令介绍