luo@luo-All-Series:~/MyFile/Anaconda3$
luo@luo-All-Series:~/MyFile/Anaconda3$
luo@luo-All-Series:~/MyFile/Anaconda3$ conda create -n t20190518 python=3.6
Solving environment: done

==> WARNING: A newer version of conda exists. <==
current version: 4.5.12
latest version: 4.6.14

Please update conda by running

$ conda update -n base -c defaults conda

## Package Plan ##

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

added / updated specs:
- python=3.6

The following packages will be downloaded:

package | build
---------------------------|-----------------
ca-certificates-2019.1.23 | 0 126 KB
openssl-1.1.1b | h7b6447c_1 4.0 MB
pip-19.1.1 | py36_0 1.9 MB
setuptools-41.0.1 | py36_0 656 KB
sqlite-3.28.0 | h7b6447c_0 1.9 MB
libedit-3.1.20181209 | hc058e9b_0 188 KB
wheel-0.33.4 | py36_0 40 KB
certifi-2019.3.9 | py36_0 155 KB
------------------------------------------------------------
Total: 8.9 MB

The following NEW packages will be INSTALLED:

ca-certificates: 2019.1.23-0
certifi: 2019.3.9-py36_0
libedit: 3.1.20181209-hc058e9b_0
libffi: 3.2.1-hd88cf55_4
libgcc-ng: 8.2.0-hdf63c60_1
libstdcxx-ng: 8.2.0-hdf63c60_1
ncurses: 6.1-he6710b0_1
openssl: 1.1.1b-h7b6447c_1
pip: 19.1.1-py36_0
python: 3.6.8-h0371630_0
readline: 7.0-h7b6447c_5
setuptools: 41.0.1-py36_0
sqlite: 3.28.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 | 126 KB | ############################################################# | 100%
openssl-1.1.1b | 4.0 MB | ############################################################# | 100%
pip-19.1.1 | 1.9 MB | ############################################################# | 100%
setuptools-41.0.1 | 656 KB | ############################################################# | 100%
sqlite-3.28.0 | 1.9 MB | ############################################################# | 100%
libedit-3.1.20181209 | 188 KB | ############################################################# | 100%
wheel-0.33.4 | 40 KB | ############################################################# | 100%
certifi-2019.3.9 | 155 KB | ############################################################# | 100%
Preparing transaction: done
Verifying transaction: done
Executing transaction: done
#
# To activate this environment, use:
# > source activate t20190518
#
# To deactivate an active environment, use:
# > source deactivate
#

luo@luo-All-Series:~/MyFile/Anaconda3$
luo@luo-All-Series:~/MyFile/Anaconda3$
luo@luo-All-Series:~/MyFile/Anaconda3$
luo@luo-All-Series:~/MyFile/Anaconda3$

computer5 environment的更多相关文章

  1. IEEE 802.11p (WAVE,Wireless Access in the Vehicular Environment)

    IEEE 802.11p(又称WAVE,Wireless Access in the Vehicular Environment)是一个由IEEE 802.11标准扩充的通讯协定.这个通讯协定主要用在 ...

  2. 修改/etc/profile和/etc/environment导致图形界面无法登陆的问题

    在使用ubuntu开发时,往往要修改PATH变量,有时会通过修改/etc/profile和/etc/environment来修改默认的PATH变量,但是一旦出错,很容易造成无法登陆进入图形界面的问题. ...

  3. System.Environment.CurrentDirectory和Application.StartupPath

    System.Environment.CurrentDirectory的含义是获取或设置当前工作路径,而Application.StartupPath是获取程序启动路径,表面上看二者没什么区别,但实际 ...

  4. Oracle客户端工具出现“Cannot access NLS data files or invalid environment specified”错误的解决办法

    Oracle客户端工具出现"Cannot access NLS data files or invalid environment specified"错误的解决办法 方法一:参考 ...

  5. TOMCAT-报错The BASEDIR environment variable is not defined correctly

    <span style="font-size:18px;">The BASEDIR environment variable is not defined correc ...

  6. cant create oci environment

    网上这些人真是七里八里呀,下了navicat premium,想连接远程数据库,结果报cant create oci environment. 看了好几篇帖子博客,都说要下一个instantclien ...

  7. [Keras] Install and environment setting

    Documentation: https://keras.io/ 1. 利用anaconda 管理python库是明智的选择. conda update conda conda update anac ...

  8. arcgis arcengine Using environment settings

    In this topic About using environment settings Environment settings summary table About using enviro ...

  9. undefined method `environment' for nil:NilClass when importing Bootstrap into rails

    今天做项目时往Gemfile里加了各gem, 然后bundle update了一下, 然后悲剧了,出现了undefined method `environment' for nil:NilClass ...

随机推荐

  1. sql 发生死锁

    SELECT request_session_id spid , OBJECT_NAME(resource_associated_entity_id) tableName FROM sys.dm_tr ...

  2. Spring的使用及Spring3.2控制器增强@ControllerAdvice

    在xml配置了这个标签后,spring可以自动去扫描base-pack下面或者子包下面的java文件,如果扫描到有@Component. @Controller.@Service等这些注解的类,则把这 ...

  3. 【基础数位DP-模板】HDU-2089-不要62

    不要62 Time Limit: / MS (Java/Others) Memory Limit: / K (Java/Others) Total Submission(s): Accepted Su ...

  4. hive的shell用法(脑子糊涂了,对着脚本第一行是 #!/bin/sh 疯狂执行hive -f 结果报错)

    hive脚本的执行方式 hive脚本的执行方式大致有三种: hive控制台执行: hive -e "SQL"执行: hive -f SQL文件执行:参考hive用法: usage: ...

  5. python_字符串方法

    1.字符串大小写转 value = "wangdianchao" # 转换为大写 big_value = value.upper() print(big_value) # 转换为小 ...

  6. IE版本判断条件注释

    IE下判断IE版本的语句...[if lte IE 8]……[endif]  <!--[if lte IE 6]> <![endif]--> IE6及其以下版本可见   < ...

  7. Shiro 中的 SecurityUtils(转)

    在 Shiro 中 SecurityUtils 是一个抽象类.并且没有任何子类.在其中声明了一个静态属性,三个静态方法. 静态属性 securityManager private static Sec ...

  8. C#中一些常用的方法使用

    一.string.Empty string.Empty就相当于 "" ,一般用于字符串的初始化 , 比如: string a; Console.WriteLine(a);//这里会 ...

  9. Python 15__屏幕抓取

  10. InputStreamReader 和 FileReader联系与区别

    两者关系: FileReader继承自InputStreamReader : 区别: InputStreamReader 是字节流通向字符流的桥梁:它使用指定的 charset 读取字节并将其解码为字 ...