conda create -n py27 python=2.7
activate py27 #激活环境
deactivate py27 #退出环境
conda install -n py27 lxml
conda info -e
conda remove -n env_name --all #如果不添--all参数,而是指明某个库名,则是删除某个环境中的某个库
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --set show_channel_urls yes
参考链接