luo@luo-ThinkPad-W540:research$ conda create -n tf2019 python=3.6
Solving environment: done

==> WARNING: A newer version of conda exists. <==
current version: 4.4.10
latest version: 4.7.11

Please update conda by running

$ conda update -n base conda

## Package Plan ##

environment location: /home/luo/anaconda3/envs/tf2019

added / updated specs:
- python=3.6

The following packages will be downloaded:

package | build
---------------------------|-----------------
ca-certificates-2019.5.15 | 1 134 KB
openssl-1.1.1d | h7b6447c_0 3.7 MB
libedit-3.1.20181209 | hc058e9b_0 188 KB
certifi-2019.6.16 | py36_1 156 KB
wheel-0.33.4 | py36_0 40 KB
setuptools-41.0.1 | py36_0 656 KB
libgcc-ng-9.1.0 | hdf63c60_0 8.1 MB
libstdcxx-ng-9.1.0 | hdf63c60_0 4.0 MB
python-3.6.9 | h265db76_0 34.4 MB
pip-19.2.2 | py36_0 1.9 MB
_libgcc_mutex-0.1 | main 3 KB
sqlite-3.29.0 | h7b6447c_0 1.9 MB
------------------------------------------------------------
Total: 55.3 MB

The following NEW packages will be INSTALLED:

_libgcc_mutex: 0.1-main
ca-certificates: 2019.5.15-1
certifi: 2019.6.16-py36_1
libedit: 3.1.20181209-hc058e9b_0
libffi: 3.2.1-hd88cf55_4
libgcc-ng: 9.1.0-hdf63c60_0
libstdcxx-ng: 9.1.0-hdf63c60_0
ncurses: 6.1-he6710b0_1
openssl: 1.1.1d-h7b6447c_0
pip: 19.2.2-py36_0
python: 3.6.9-h265db76_0
readline: 7.0-h7b6447c_5
setuptools: 41.0.1-py36_0
sqlite: 3.29.0-h7b6447c_0
tk: 8.6.8-hbc83047_0
wheel: 0.33.4-py36_0
xz: 5.2.4-h14c3975_4
zlib: 1.2.11-h7b6447c_3

Proceed ([y]/n)? y

Downloading and Extracting Packages
ca-certificates 2019.5.15: ############################################################################## | 100%
openssl 1.1.1d: ######################################################################################### | 100%
libedit 3.1.20181209: ################################################################################### | 100%
certifi 2019.6.16: ###################################################################################### | 100%
wheel 0.33.4: ########################################################################################### | 100%
setuptools 41.0.1: ###################################################################################### | 100%
libgcc-ng 9.1.0: ######################################################################################## | 100%
libstdcxx-ng 9.1.0: ##################################################################################### | 100%
python 3.6.9: ########################################################################################### | 100%
pip 19.2.2: ############################################################################################# | 100%
_libgcc_mutex 0.1: ###################################################################################### | 100%
sqlite 3.29.0: ########################################################################################## | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use
#
# $ conda activate tf2019
#
# To deactivate an active environment, use
#
# $ conda deactivate

luo@luo-ThinkPad-W540:research$

ubuntu2 setting的更多相关文章

  1. linux使用wkhtmltopdf报错error while loading shared libraries:

    官网提示 linux需要这些动态库.depends on: zlib, fontconfig, freetype, X11 libs (libX11, libXext, libXrender) 在li ...

  2. Intel Media SDK H264 encoder GOP setting

    1 I帧,P帧,B帧,IDR帧,NAL单元 I frame:帧内编码帧,又称intra picture,I 帧通常是每个 GOP(MPEG 所使用的一种视频压缩技术)的第一个帧,经过适度地压缩,做为随 ...

  3. ABP源码分析七:Setting 以及 Mail

    本文主要说明Setting的实现以及Mail这个功能模块如何使用Setting. 首先区分一下ABP中的Setting和Configuration. Setting一般用于需要通过外部配置文件(或数据 ...

  4. ABP源码分析四十一:ZERO的Audit,Setting,Background Job

    AuditLog: 继承自Entity<long>的实体类.封装AuditLog的信息. AuditingStore: 实现了IAuditingStore接口,实现了将AuditLog的信 ...

  5. Oracle EBS - Profile Setting

    EBS Profile Setting (Personalization Basics): Personalization Basics For R12 Forms Enable personaliz ...

  6. Setting Up KeePass For Centos 6

    This mini-howto describes how to set up KeePass on Centos 6. It requires building mono from source a ...

  7. ubuntu14.04为安装fcitx卸载ibus后出现system setting (系统设置)中图标消失的问题

    最近在系统为ubuntu14.04原版中,安装fictx.按照以往的经验应先把ibus卸载干净,否则可能会有冲突.因此惯性思维驱使,先卸载ibus,然后安装fcitx,但是问题出现了,system s ...

  8. hibernate 异常:Unexpected Exception caught setting

    异常信息:Unexpected Exception caught setting 'outHeight' on 'class com.srpm.core.project.seismicFortific ...

  9. 解决VS2015启动时Package manager console崩溃的问题 - Windows PowerShell updated your execution policy successfully, but the setting is overridden by a policy defined at a more specific scope

    安装VS2015,启动以后,Package manager console崩溃,错误信息如下: Windows PowerShell updated your execution policy suc ...

随机推荐

  1. canvans知识点

    1.绘制圆的角度示意图: 2 倒计时中,时钟数字的渲染逻辑: 3 直线边缘样式的设置 context.lineCap = "butt"; context.lineCap = &qu ...

  2. screen 调到后台使用

    yum -y install screen   screen -S  name     开启后台进程 screen -ls      显示进程 screen -r  ID号    进入 Ctrl+r再 ...

  3. 题解 UVa10943

    题目大意 多组数据,每组数据给定两个整数 \(n,k\),求出用 \(k\) 个不超过 \(n\) 的数相加得到 \(n\) 的方案数(不同顺序不算同种). 分析 计数水题.令 \(f_{i,j}\) ...

  4. MYSQL 常见引擎

    Mysql常见的引擎   常用的引擎是:Innodb和Myiasm这两种引擎: innodb: 提供了对事务的ACID操作,还提供了行级锁和外键约束,,他的优势就是处理大量数据,在msql启动的时候, ...

  5. .net web api 返回的是xml

    var result = new HttpResponseMessage { Content = new StringContent(JsonConvert.SerializeObject(dto2) ...

  6. ElasticSearch 初识ES

    版权声明:本文为博主原创文章,遵循CC 4.0 by-sa版权协议,转载请附上原文出处链接和本声明. 本文链接:https://blog.csdn.net/u013047584/article/det ...

  7. Bzoj 4147: [AMPPZ2014]Euclidean Nim(博弈)

    4147: [AMPPZ2014]Euclidean Nim Time Limit: 1 Sec Memory Limit: 256 MB Description Euclid和Pythagoras在 ...

  8. 洛谷P1714切蛋糕

    题目 该题目就是求这n个数的前缀和所组成的数组的所有子区间的左端点和右端点相差不超过m,且他们的前缀和差最大,求出这个最大值即可. 而朴素算法肯定会T,而我们发现如果前缀和最大的话,则前缀和的值一定是 ...

  9. javascript 中的对象初始化

    参考 developer.mozilla.org 网站.这个是一个前端必须经常光顾的网站. 记录一下对象的创建方法,虽然很简单,但是确需要非常注意. Objects can be initialize ...

  10. D2. Remove the Substring (hard version)(思维 )

    D2. Remove the Substring (hard version) time limit per test 2 seconds memory limit per test 256 mega ...