美文网首页
acaconda 基本操作备忘

acaconda 基本操作备忘

作者: 进击的小恶魔 | 来源:发表于2019-03-09 01:16 被阅读0次

acaconda 安装第三方库

首先,确定要把这个第三方库安装到哪个环境里面去
查看安装了哪些环境
$ conda env list
base                  *  /anaconda3
python37                 /anaconda3/envs/python37
tensorflow               /anaconda3/envs/tensorflow

(带 * 表示是当前环境)

激活环境
$ source  activate python37

这样就激活并进入了python 37的环境
再次查看:
$ conda env list
base                     /anaconda3
python37              *  /anaconda3/envs/python37
tensorflow               /anaconda3/envs/tensorflow

查看可以安装的第三方库
$ conda list

安装第三方库
$ conda install --name python37 pandas
注意:--name python37 是指定将pandas安装到名字为python37的环境中去,如果不指定的话,会安装到当前的环境中

相关文章

  • acaconda 基本操作备忘

    acaconda 安装第三方库

  • HttpURLConnection基本使用

    本文关于HttpURLConnection的基本使用,用来做为备忘记录,方便查询。 GET操作 POST请求 Do...

  • 基本语法备忘

    修饰词 property & synthesize https://www.jianshu.com/p/e27fe...

  • mongoose 操作备忘

    在使用node.js时,时常与之搭配的是mongoDB,一般我们不写原生mongo语法,一个经常使用的mongo库...

  • 常用操作备忘

    mac 操作 splotlight 打开查找文件的目录 2020-11-22 spotlight 中输入查找的文件...

  • excel操作备忘

    1. excel数字按长度补0,并转换成文本 在海尔这段时间从数据库里导出来的员工工号8位数,因为有些0开头的,导...

  • git操作备忘

    1、配置用户信息: 其实就是在~/.gitconfig里面修改效果一样:[user]name = xxxemail...

  • git 操作备忘

    创建本地分支 git branch 分支名 例如:git branch dev,这条命令是基于当前分支创建的本地分...

  • 字笔字型难拆字备忘

    一、字根表 二、难字集 三、耳机操作备忘

  • DOM总结

    简单整理一下dom操作,备忘。 查询元素 getElementById()getElementsByClassNa...

网友评论

      本文标题:acaconda 基本操作备忘

      本文链接:https://www.haomeiwen.com/subject/fjujpqtx.html