conda printing logging messages

Created on 3 Aug 2016  路  1Comment  路  Source: conda/conda

I am sure this is something I must have done but I just don't know how to fix it.

Can someone please tell me what I did that caused conda to start printing logging messages, e.g. INFO:progress.update:('python', 5), INFO:print:Linking packages ...? This is a recent change and I think started after upgrading conda in my root environment this morning.

I have poked around to see if there is a logging_config.ini file laying around and I haven't found any.

$ python --version
Python 2.7.12 :: Continuum Analytics, Inc.

$ conda --version
conda 4.1.11

For example,

$ conda create -q -y -n test4
Fetching package metadata .......
Solving package specifications: ..........

Package plan for installation in environment /home/matsengrp/miniconda/envs/test4:

The following NEW packages will be INSTALLED:

    openssl:    1.0.2h-1     
    pip:        8.1.2-py27_0 
    python:     2.7.12-1     
    readline:   6.2-2        
    setuptools: 23.0.0-py27_0
    sqlite:     3.13.0-0     
    tk:         8.5.18-0     
    wheel:      0.29.0-py27_0
    zlib:       1.2.8-3      

INFO:print:Linking packages ...
INFO:progress.start:9
INFO:progress.update:('openssl', 0)
INFO:progress.update:('readline', 1)
INFO:progress.update:('sqlite', 2)
INFO:progress.update:('tk', 3)
INFO:progress.update:('zlib', 4)
INFO:progress.update:('python', 5)
INFO:progress.update:('setuptools', 6)
INFO:progress.update:('wheel', 7)
INFO:progress.update:('pip', 8)
INFO:progress.stop:None
No psutil available.
To proceed, please conda install psutilWARNING:stderrlog:No psutil available.
To proceed, please conda install psutil
#
# To activate this environment, use:
# $ source activate test4
#
# To deactivate this environment, use:
# $ source deactivate
#

Most helpful comment

This is a bug that conda-build introduced in version 1.21.8 and 1.21.9. You can either remove conda-build, or install version 1.21.7:

conda install -f conda-build=1.21.7

We'll have a fix out soon.

>All comments

This is a bug that conda-build introduced in version 1.21.8 and 1.21.9. You can either remove conda-build, or install version 1.21.7:

conda install -f conda-build=1.21.7

We'll have a fix out soon.

Was this page helpful?
0 / 5 - 0 ratings