# Anaconda 教程
- [Anaconda 快速入门](http://blog.csdn.net/mzpmzk/article/details/71598679)
`conda list`:列出所有已安装的包
`conda install package_name`:安装软件包,同时它会自动安装此软件包的依赖项
`conda install numpy pandas`:同时安装多个包
`conda install python=2.7`:安装指定版本的包
`conda remove package_name`:卸载包
`conda update/upgrade --all`:更新环境中的所有已安装的包
`conda info`:Display information about current conda install
`conda help`:Displays a list of available conda commands and their help strings
`conda search`:Search for packages(可以进行模糊匹配) and display their information
`conda create`:Create a new conda environment from a list of specified packages
`conda command --help(-h)`:For full documentation of any command, type the command followed by –help(-h)
`conda -V`:Show the conda version number and exit