赞
踩
# 查看虚拟环境conda env list
#创建一个环境名为py36,指定版本为3.6conda create -n py36 python=3.6
激活环境
# 在windows环境下使用activate激活activate py36
退出环境
# 在windows环境下使用deactivatedeactivate# 删除虚拟环境conda remove -n py36 –all#查看已有的环境列表conda info -e
命令行切换虚拟环境
source activate python3.6activate python3.6conda activate python3.6
命令行关闭虚拟环境
source deactivate python3.6deactivate python3.6conda deactivate
命令行安装Python包
# 安装numpypip install numpy
# 安装matplotlibpip install matplotlib
# 安装pandaspip install pandas
# 安装sklearnpip install scikit-learn
# 安装tensorflow并指定版本为1.6.0pip install tensorflow==1.6.0
# 安装requestspip install requests
# 安装ini配置文件解析pip install configparser
# 安装mysql驱动pip install pymysq
#安装dbutils数据库连接池anaconda search -t conda dbutils
# 使用国内镜像下载包# 清华:https://pypi.tuna.tsinghua.edu.cn/simple# 阿里云:http://mirrors.aliyun.com/pypi/simple/# 中国科技大学:https://pypi.mirrors.ustc.edu.cn/simple/# 华中理工大学:http://pypi.hustunique.com/# 山东理工大学:http://pypi.sdutlinux.org/# 豆瓣:http://pypi.douban.com/simple/# 使用方法:# pip install-i https://pypi.tuna.tsinghua.edu.cn/simple库名如,安装 matplotlib pip install-i https://pypi.tuna.tsinghua.edu.cn/simple matplotlib
Anaconda更改工作路径
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。