# 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