Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Memory usage with conda installation (on Travis) #1197

Closed
sebastian-luna-valero opened this issue Mar 13, 2015 · 15 comments
Closed

Memory usage with conda installation (on Travis) #1197

sebastian-luna-valero opened this issue Mar 13, 2015 · 15 comments
Labels
locked [bot] locked due to inactivity source::community catch-all for issues filed by community members stale::closed [bot] closed after being marked as stale stale [bot] marked as stale due to inactivity type::feature request for a new feature or capability

Comments

@sebastian-luna-valero
Copy link

Dear all,

We are using Travis for continuous integration. Our code base depends on a number of Python and R/Bioconductor packages that I am installing with Conda.

As you may know, Travis builds for open-source projects come with resource restrictions:
http://docs.travis-ci.com/user/ci-environment/#The-Build-Machine

namely, 3GB RAM + 1.5GB swap with 2 cores.

My problem here is with RAM usage. Our Travis builds fail due to the target system running out of memory and after some troubleshooting I have realised that the command:

conda create -n env pkg1 pkg2 etc.

consumes most of the RAM but in a non-deterministic fashion.

In a failed Travis build the amount of RAM, as reported by free, goes from 1.2GB to 4.5GB (maximum allowed by Travis). Please see before conda create:
https://travis-ci.org/CGATOxford/cgat/jobs/54262464#L124

and after:
https://travis-ci.org/CGATOxford/cgat/jobs/54262464#L571

This is the error reported by Travis:
https://travis-ci.org/CGATOxford/cgat/jobs/54262464#L682

In a successful Travis build the amount of RAM goes from 1.2GB to 1.8GB. Please see before conda create:
https://travis-ci.org/CGATOxford/cgat/jobs/54262465#L124

and after:
https://travis-ci.org/CGATOxford/cgat/jobs/54262465#L571

I have also found this thread:
travis-ci/travis-ci#2904

kindly asking for higher amount of resources for Travis builds but that is not going to happen soon.

I have used conda clean --index-cache with no success. I was wondering whether you could provide advice on this or do you think I need to ask to Travis forum instead?

PS: My Conda recipes for R/Bioconductor packages are not uploaded to Git Hub yet but I am willing to do so soon, just in case anyone is interested in having them.

@asmeurer
Copy link
Contributor

I'd have to dig into this with memory_profiler to see what is happening. The one thing that is known to sometimes use a lot of memory is the dependency resolution algorithm, but it doesn't look like you are using the tricky parts of it (there is only one . after "Solving package specifications").

Can you reproduce this on a local machine?

@sebastian-luna-valero
Copy link
Author

Thanks Aaron!

I kind of have the same behaviour on my desktop. These are the steps:

free > memory-before-conda-install
bash ../Miniconda-latest-Linux-x86_64.sh -b -p install-1
install-1/bin/conda update conda -y
install-1/bin/conda create -q -n test-gcc cgat-devel bioconductor-deseq bioconductor-deseq2 r-wgcna r r-dtw r-rcolorbrewer r-flashclust bioconductor-masigpro bioconductor-timecourse --yes
free > memory-after-conda-install
install-1/bin/conda clean --index-cache
free > memory-after-conda-clean
rm -rf install-1/
free > memory-after-conda-rm

I have repeated that twice, with consistent results:

  • memory-before-conda-install
             total       used       free     shared    buffers     cached
Mem:       8012732    5653672    2359060      15692     253748    1064800
-/+ buffers/cache:    4335124    3677608
Swap:      1048572     164304     884268
  • memory-after-conda-install
             total       used       free     shared    buffers     cached
Mem:       8012732    7755492     257240      15536     219072    3230308
-/+ buffers/cache:    4306112    3706620
Swap:      1048572     166544     882028
  • memory-after-conda-clean
             total       used       free     shared    buffers     cached
Mem:       8012732    7747300     265432      15536     219116    3233368
-/+ buffers/cache:    4294816    3717916
Swap:      1048572     166544     882028
  • memory-after-conda-rm
             total       used       free     shared    buffers     cached
Mem:       8012732    5027368    2985364      15536     219272     610064
-/+ buffers/cache:    4198032    3814700
Swap:      1048572     166544     882028

Please note that you will need:

conda config --add channels https://conda.binstar.org/asmeurer
conda config --add channels https://conda.binstar.org/cgat

for it to be fully reproducible on your end.

Best regards,
Sebastian.

@asmeurer
Copy link
Contributor

I'm not able to reproduce it. How does free work on linux? Shouldn't the memory from Python become free as soon as it is no longer running?

Something you could do that might help is to run memory_profiler (mprof run). If you see a spike in the memory usage (from the mprof plot) and can associate that with output from the conda command, it might help me to understand what part of conda is causing this.

@sebastian-luna-valero
Copy link
Author

Hi Aaron,

Here is a nice explanation of how free works on Linux:
http://www.linfo.org/free.html

Here is the plot generated with memory_profiler on my Linux desktop:
http://share-pic.net/i/2015/03/16/mprof-plot.png

I have written a small Bash script:

#!/bin/bash
bash ../Miniconda-latest-Linux-x86_64.sh -b -p install-1
install-1/bin/conda update conda -y
install-1/bin/conda create -q -n test-gcc cgat-devel bioconductor-deseq bioconductor-deseq2 r-wgcna r r-dtw r-rcolorbrewer r-flashclust bioconductor-masigpro bioconductor-timecourse --yes
install-1/bin/conda clean --index-cache
rm -rf install-1/

and then run mprof run ./re-installation.sh.

Just in case this is relevant, here is an interesting article on how Python manages memory:
https://hbfs.wordpress.com/2013/01/08/python-memory-management-part-ii/

On the other hand, I have added:

conda clean --index-cache
conda clean --lock
conda clean --tarballs -y
conda clean --packages -y

to our Travis builds and the memory usage has decreased so they can now finish.

Please let me know if I can try something else.

Many thanks,
Sebastian.

@sklam
Copy link

sklam commented May 26, 2015

I am encountering a similar problem. The following command causes 1.3GB memory use on a Ubuntu 14.04 x64 VM:

conda install -c ufechner -c janharms -c mutirri freekitesim

Since the system only has 2GB, conda failed to complete the installation because it does not have enough memory to fork. Failing at a os.fork().

FYI: conda version 3.12.0

@seibert
Copy link
Contributor

seibert commented May 26, 2015

I recently saw the same issue on a Linux VM where conda install was installing from both the public repo and a private conda repo. I had to bump the memory allocation to the VM to 4 GB in order to avoid the failure at fork().

@asmeurer
Copy link
Contributor

@sklam or @seibert do you have a traceback?

@sklam
Copy link

sklam commented May 26, 2015

@asmeurer, here:

$ conda install -c ufechner -c janharms -c mutirri freekitesim
Fetching package metadata: ..........
Solving package specifications: ...............................
Warning: 2 possible package resolutions (only showing differing packages):
    [u'freeglut-2.8.1-py27_0.tar.bz2'],
    [u'freeglut-2.8.1-0.tar.bz2'],

Package plan for installation in environment /home/builder/miniconda/envs/kitesim:

The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    boost-1.55.0               |                1        13.6 MB
    freetype-2.4.10            |                0         2.0 MB
    jpeg-8d                    |                0         699 KB
    lcms-1.19                  |                0         595 KB
    lib3ds-1.3.0               |                1         304 KB
    libsodium-0.4.5            |                0         529 KB
    qt-4.8.5                   |                0        32.8 MB
    sdl-1.2.15                 |                0         2.0 MB
    cairo-1.12.18              |                0         593 KB
    zeromq-4.0.5               |                0         2.6 MB
    cgkit-2.0.0                |           py27_1        11.5 MB
    distribute-0.6.45          |           py27_1         517 KB
    ipython-3.1.0              |           py27_0         3.4 MB
    pil-1.1.7                  |           py27_1         587 KB
    pygame-patched-1.9.1       |           py27_1         2.6 MB
    pyopengl-py27-3.1.0b1      |           py27_0         603 KB
    freeglut-2.8.1             |           py27_0         534 KB
    pyparsing-2.0.3            |           py27_0          63 KB
    pytz-2015.4                |           py27_0         174 KB
    pyzmq-14.6.0               |           py27_0         657 KB
    scipy-0.15.1               |       np19py27_0        37.0 MB
    scons-2.3.0                |           py27_0         714 KB
    shiboken-1.2.1             |           py27_0         883 KB
    sip-4.15.5                 |           py27_0         243 KB
    six-1.9.0                  |           py27_0          17 KB
    dateutil-2.4.1             |           py27_0         218 KB
    protobuf-linux64-2.5.0     |           py27_0         177 KB
    pyqt-4.10.4                |           py27_0         4.4 MB
    pyside-1.2.1               |           py27_1         5.7 MB
    matplotlib-1.4.3           |       np19py27_0        44.6 MB
    pandas-0.16.1              |       np19py27_0        10.7 MB
    pyqtgraph-0.9.10           |       np19py27_0         864 KB
    assimulo-2.5               |       np19py27_1         4.1 MB
    freekitesim-0.4            |       np19py27_0           2 KB
    ------------------------------------------------------------
                                           Total:       185.9 MB

The following NEW packages will be INSTALLED:

    assimulo:         2.5-np19py27_1   
    boost:            1.55.0-1         
    cairo:            1.12.18-0        
    cgkit:            2.0.0-py27_1     
    dateutil:         2.4.1-py27_0     
    distribute:       0.6.45-py27_1    
    enum34:           1.0.4-py27_0     
    freeglut:         2.8.1-py27_0     
    freekitesim:      0.4-np19py27_0   
    freetype:         2.4.10-0         
    funcsigs:         0.4-py27_0       
    ipython:          3.1.0-py27_0     
    jpeg:             8d-0             
    lcms:             1.19-0           
    lib3ds:           1.3.0-1          
    libpng:           1.5.13-1         
    libsodium:        0.4.5-0          
    llvmlite:         0.4.0-py27_0     
    matplotlib:       1.4.3-np19py27_0 
    numba:            0.18.2-np19py27_1
    numpy:            1.9.2-py27_0     
    pandas:           0.16.1-np19py27_0
    pil:              1.1.7-py27_1     
    pixman:           0.26.2-0         
    protobuf-linux64: 2.5.0-py27_0     
    py2cairo:         1.10.0-py27_2    
    pygame-patched:   1.9.1-py27_1     
    pyopengl-py27:    3.1.0b1-py27_0   
    pyparsing:        2.0.3-py27_0     
    pyqt:             4.10.4-py27_0    
    pyqtgraph:        0.9.10-np19py27_0
    pyside:           1.2.1-py27_1     
    python-dateutil:  2.4.2-py27_0     
    pytz:             2015.4-py27_0    
    pyzmq:            14.6.0-py27_0    
    qt:               4.8.5-0          
    scipy:            0.15.1-np19py27_0
    scons:            2.3.0-py27_0     
    sdl:              1.2.15-0         
    shiboken:         1.2.1-py27_0     
    sip:              4.15.5-py27_0    
    six:              1.9.0-py27_0     
    zeromq:           4.0.5-0          

Proceed ([y]/n)? y

Fetching packages ...
boost-1.55.0-1 100% |######################################################| Time: 0:00:03   4.56 MB/s
freetype-2.4.1 100% |######################################################| Time: 0:00:00   2.89 MB/s
jpeg-8d-0.tar. 100% |######################################################| Time: 0:00:00   1.95 MB/s
lcms-1.19-0.ta 100% |######################################################| Time: 0:00:00   1.68 MB/s
lib3ds-1.3.0-1 100% |######################################################| Time: 0:00:00   1.26 MB/s
libsodium-0.4. 100% |######################################################| Time: 0:00:00   1.66 MB/s
qt-4.8.5-0.tar 100% |######################################################| Time: 0:00:10   3.21 MB/s
sdl-1.2.15-0.t 100% |######################################################| Time: 0:00:00   3.78 MB/s
cairo-1.12.18- 100% |######################################################| Time: 0:00:00   1.65 MB/s
zeromq-4.0.5-0 100% |######################################################| Time: 0:00:00   3.15 MB/s
cgkit-2.0.0-py 100% |######################################################| Time: 0:00:02   4.07 MB/s
distribute-0.6 100% |######################################################| Time: 0:00:17  30.44 kB/s
ipython-3.1.0- 100% |######################################################| Time: 0:00:01   2.79 MB/s
pil-1.1.7-py27 100% |######################################################| Time: 0:00:00   1.53 MB/s
pygame-patched 100% |######################################################| Time: 0:00:00   3.35 MB/s
pyopengl-py27- 100% |######################################################| Time: 0:00:00   1.61 MB/s
freeglut-2.8.1 100% |######################################################| Time: 0:00:00   1.52 MB/s
pyparsing-2.0. 100% |######################################################| Time: 0:00:00 528.28 kB/s
pytz-2015.4-py 100% |######################################################| Time: 0:00:04  41.64 kB/s
pyzmq-14.6.0-p 100% |######################################################| Time: 0:00:00   1.55 MB/s
scipy-0.15.1-n 100% |######################################################| Time: 0:00:10   3.75 MB/s
scons-2.3.0-py 100% |######################################################| Time: 0:00:00 966.36 kB/s
shiboken-1.2.1 100% |######################################################| Time: 0:00:00   1.83 MB/s
sip-4.15.5-py2 100% |######################################################| Time: 0:00:00 876.04 kB/s
six-1.9.0-py27 100% |######################################################| Time: 0:00:00 391.91 kB/s
dateutil-2.4.1 100% |######################################################| Time: 0:00:00 750.81 kB/s
protobuf-linux 100% |######################################################| Time: 0:00:00   1.02 MB/s
pyqt-4.10.4-py 100% |######################################################| Time: 0:00:03   1.21 MB/s
pyside-1.2.1-p 100% |######################################################| Time: 0:00:02   2.67 MB/s
matplotlib-1.4 100% |######################################################| Time: 0:00:13   3.51 MB/s
pandas-0.16.1- 100% |######################################################| Time: 0:00:03   3.13 MB/s
pyqtgraph-0.9. 100% |######################################################| Time: 0:00:00 973.30 kB/s
assimulo-2.5-n 100% |######################################################| Time: 0:00:01   3.01 MB/s
freekitesim-0. 100% |######################################################| Time: 0:00:00   1.79 MB/s
Extracting packages ...
[      COMPLETE      ]|#########################################################################| 100%
Linking packages ...
An unexpected error has occurred, please consider sending the                                   |   0%
following traceback to the conda GitHub issue tracker at:

    https://github.com/conda/conda/issues

Include the output of the command 'conda info' in your report.


Traceback (most recent call last):
  File "/home/builder/miniconda/envs/kitesim/bin/conda", line 5, in <module>
    sys.exit(main())
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/cli/main.py", line 203, in main
    args_func(args, p)
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/cli/main.py", line 208, in args_func
    args.func(args, p)
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/cli/common.py", line 609, in inner
    return func(args, parser)
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/cli/main_install.py", line 46, in execute
    install.install(args, parser, 'install')
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/cli/install.py", line 413, in install
    plan.execute_actions(actions, index, verbose=not args.quiet)
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/plan.py", line 531, in execute_actions
    inst.execute_instructions(plan, index, verbose)
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/instructions.py", line 156, in execute_instructions
    cmd(state, arg)
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/instructions.py", line 93, in LINK_CMD
    link(state['prefix'], arg, index=state['index'])
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/instructions.py", line 89, in link
    install.link(pkgs_dir, prefix, dist, lt, index=index)
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/install.py", line 568, in link
    if not run_script(prefix, dist, 'post-link'):
  File "/home/builder/miniconda/lib/python2.7/site-packages/conda/install.py", line 350, in run_script
    subprocess.check_call(args, env=env)
  File "/home/builder/miniconda/lib/python2.7/subprocess.py", line 535, in check_call
    retcode = call(*popenargs, **kwargs)
  File "/home/builder/miniconda/lib/python2.7/subprocess.py", line 522, in call
    return Popen(*popenargs, **kwargs).wait()
  File "/home/builder/miniconda/lib/python2.7/subprocess.py", line 710, in __init__
    errread, errwrite)
  File "/home/builder/miniconda/lib/python2.7/subprocess.py", line 1231, in _execute_child
    self.pid = os.fork()
OSError: [Errno 12] Cannot allocate memory

@asmeurer
Copy link
Contributor

Ah, some package has a post-link script. That explains why os.fork is used.

@asmeurer
Copy link
Contributor

The code

import logging
logging.disable(logging.NOTSET)
logging.basicConfig(level=logging.DEBUG)
from conda.cli.install import check_install
check_install(['freekitesim'], platform='linux-64', channel_urls=('ufechner', 'janharms', 'mutirri', 'defaults'), prepend=False)

will reproduce this on any machine (not just Linux). If I run that on OS X I get very low memory usage (no more than 600 MB), and the memory usage drops a few times when things are garbage collected. I can maybe see it getting that big if nothing was ever garbage collected.

Maybe using memory profiler to produce a memory graph from that script on Ubuntu and on OS X and comparing them would give some insight.

@asmeurer
Copy link
Contributor

Thanks for the tip about Instruments @sklam. The issue was a zip call, which wasn't using itertools.izip in Python 2. Should be fixed in the next version of conda, or use Python 3 if you need a workaround now.

@sebastian-luna-valero I noticed you are also using Python 2. Can you report back if this doesn't fix it after we release (or alternately, if Miniconda3 fixes your problems)?

@sebastian-luna-valero
Copy link
Author

Thanks @asmeurer

I have just re-run the script above:

bash ../Miniconda-latest-Linux-x86_64.sh -b -p install-1
install-1/bin/conda update conda -y
install-1/bin/conda create -q -n test-gcc cgat-devel bioconductor-deseq bioconductor-deseq2 r-wgcna r r-dtw r-rcolorbrewer r-flashclust bioconductor-masigpro bioconductor-timecourse --yes
install-1/bin/conda clean --index-cache
rm -rf install-1/

This is the output:

mprof run --nopython --include-children --interval=1 ./re-installation.sh
mprof: Sampling memory every 1.0s
PREFIX=/sebastian/conda/conda-install/install-1
installing: python-2.7.8-1 ...
installing: openssl-1.0.1h-1 ...
installing: pycosat-0.6.1-py27_0 ...
installing: pyyaml-3.11-py27_0 ...
installing: readline-6.2-2 ...
installing: requests-2.4.3-py27_0 ...
installing: sqlite-3.8.4.1-0 ...
installing: system-5.8-1 ...
installing: tk-8.5.15-0 ...
installing: yaml-0.1.4-0 ...
installing: zlib-1.2.7-0 ...
installing: conda-3.7.3-py27_0 ...
Python 2.7.8 :: Continuum Analytics, Inc.
creating default environment...
installation finished.
Fetching package metadata: .....
Solving package specifications: .
Package plan for installation in environment /sebastian/conda/conda-install/install-1:

The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    conda-3.13.0               |           py27_0         167 KB
    conda-env-2.1.4            |           py27_0          15 KB
    ncurses-5.9                |                4         676 KB
    openssl-1.0.1k             |                1         2.6 MB
    python-2.7.10              |                0        13.5 MB
    readline-6.2.5             |                1         605 KB
    requests-2.7.0             |           py27_0         594 KB
    sqlite-3.8.4.1             |                1         2.5 MB
    system-5.8                 |                2         170 KB
    tk-8.5.18                  |                0         1.9 MB
    zlib-1.2.8                 |                0         100 KB
    ------------------------------------------------------------
                                           Total:        22.7 MB

The following NEW packages will be INSTALLED:

    conda-env: 2.1.4-py27_0 
    ncurses:   5.9-4        

The following packages will be UPDATED:

    conda:     3.7.3-py27_0 --> 3.13.0-py27_0
    openssl:   1.0.1h-1     --> 1.0.1k-1     
    python:    2.7.8-1      --> 2.7.10-0     
    readline:  6.2-2        --> 6.2.5-1      
    requests:  2.4.3-py27_0 --> 2.7.0-py27_0 
    sqlite:    3.8.4.1-0    --> 3.8.4.1-1    
    system:    5.8-1        --> 5.8-2        
    tk:        8.5.15-0     --> 8.5.18-0     
    zlib:      1.2.7-0      --> 1.2.8-0      

Fetching packages ...
conda-3.13.0-p 100% |#############################################################################################################################################################################################| Time: 0:00:00 466.20 kB/s
conda-env-2.1. 100% |#############################################################################################################################################################################################| Time: 0:00:00 171.60 kB/s
ncurses-5.9-4. 100% |#############################################################################################################################################################################################| Time: 0:00:01 428.91 kB/s
openssl-1.0.1k 100% |#############################################################################################################################################################################################| Time: 0:00:02   1.16 MB/s
python-2.7.10- 100% |#############################################################################################################################################################################################| Time: 0:00:03   3.77 MB/s
readline-6.2.5 100% |#############################################################################################################################################################################################| Time: 0:00:01 363.14 kB/s
requests-2.7.0 100% |#############################################################################################################################################################################################| Time: 0:00:00 966.10 kB/s
sqlite-3.8.4.1 100% |#############################################################################################################################################################################################| Time: 0:00:01   1.70 MB/s
system-5.8-2.t 100% |#############################################################################################################################################################################################| Time: 0:00:00 479.10 kB/s
tk-8.5.18-0.ta 100% |#############################################################################################################################################################################################| Time: 0:00:01 985.21 kB/s
zlib-1.2.8-0.t 100% |#############################################################################################################################################################################################| Time: 0:00:00 360.86 kB/s
Extracting packages ...
[      COMPLETE      ] |###############################################################################################################################################################################################################| 100%
Unlinking packages ...
[      COMPLETE      ] |###############################################################################################################################################################################################################| 100%
Linking packages ...
[      COMPLETE      ] |###############################################################################################################################################################################################################| 100%
Fetching package metadata: ..........
Solving package specifications: .................................
Warning: 8 possible package resolutions (only showing differing packages):
    [u'r-reshape-0.8.5-0.tar.bz2', u'r-rsqlite-1.0.0-0.tar.bz2', u'r-xtable-1.7_4-r3.1.3_0.tar.bz2'],
    [u'r-reshape-0.8.5-0.tar.bz2', u'r-rsqlite-1.0.0-r3.1.3_0.tar.bz2', u'r-xtable-1.7_4-0.tar.bz2'],
    [u'r-reshape-0.8.5-r3.1.3_0.tar.bz2', u'r-rsqlite-1.0.0-r3.1.3_0.tar.bz2', u'r-xtable-1.7_4-0.tar.bz2'],
    [u'r-reshape-0.8.5-r3.1.3_0.tar.bz2', u'r-rsqlite-1.0.0-0.tar.bz2', u'r-xtable-1.7_4-0.tar.bz2'],
    [u'r-reshape-0.8.5-r3.1.3_0.tar.bz2', u'r-rsqlite-1.0.0-r3.1.3_0.tar.bz2', u'r-xtable-1.7_4-r3.1.3_0.tar.bz2'],
    [u'r-reshape-0.8.5-0.tar.bz2', u'r-rsqlite-1.0.0-r3.1.3_0.tar.bz2', u'r-xtable-1.7_4-r3.1.3_0.tar.bz2'],
    [u'r-reshape-0.8.5-0.tar.bz2', u'r-rsqlite-1.0.0-0.tar.bz2', u'r-xtable-1.7_4-0.tar.bz2'],
    [u'r-reshape-0.8.5-r3.1.3_0.tar.bz2', u'r-rsqlite-1.0.0-0.tar.bz2', u'r-xtable-1.7_4-r3.1.3_0.tar.bz2'],

Package plan for installation in environment /sebastian/conda/conda-install/install-1/envs/test-gcc:

The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    bedtools-2.21.0            |                0         646 KB
    bzip2-1.0.6                |                0          75 KB
    gc-profile-2.0             |                0         400 KB
    gmp-5.1.2                  |                5         599 KB
    jpeg-8d                    |                0         699 KB
    libffi-3.0.13              |                3          40 KB
    libpng-1.6.17              |                0         214 KB
    mysql-5.1.73               |                0        30.1 MB
    pcre-8.31                  |                0         534 KB
    pixman-0.26.2              |                0         1.9 MB
    ucsc-cgat-4                |                0         564 KB
    freetype-2.5.2             |                2         2.5 MB
    glib-2.43.0                |                2         7.4 MB
    isl-0.12.2                 |                1         1.1 MB
    libtiff-4.0.2              |                1         930 KB
    libxml2-2.9.0              |                0         3.9 MB
    mpfr-3.1.2                 |                0         419 KB
    cloog-0.18.0               |                0         645 KB
    fontconfig-2.11.1          |                4         402 KB
    mpc-1.0.2                  |                0          63 KB
    cairo-1.12.18              |                4         592 KB
    gcc-4.8.4                  |                1       251.1 MB
    libgcc-4.8.4               |                1         3.6 MB
    qt-4.8.6                   |                3        36.3 MB
    harfbuzz-0.9.35            |                6         1.1 MB
    pango-1.36.8               |                3         796 KB
    r-base-3.1.3               |                2        20.3 MB
    alabaster-0.7.3            |           py27_0          13 KB
    alignlib-lite-0.2.3        |           py27_0         2.9 MB
    bioconductor-biocgenerics-0.12.1|                0         446 KB
    bioconductor-biobase-2.26.0|                0         2.0 MB
    bioconductor-dyndoc-1.44.0 |                0         121 KB
    bioconductor-impute-1.40.0 |                0         647 KB
    bioconductor-limma-3.22.6  |                0         2.2 MB
    bioconductor-marray-1.44.0 |                0         3.9 MB
    bioconductor-preprocesscore-1.28.0|                0         128 KB
    bioconductor-s4vectors-0.4.0|                0         727 KB
    bioconductor-iranges-2.0.1 |                0         1.7 MB
    bioconductor-genomeinfodb-1.2.4|                0         413 KB
    bioconductor-widget-tools-1.44.0|                0         250 KB
    bioconductor-tk-widgets-1.44.0|                0         378 KB
    bioconductor-xvector-0.6.0 |                0         389 KB
    bioconductor-genomic-ranges-1.18.4|                0         1.2 MB
    brewer2mpl-1.4.1           |           py27_0         456 KB
    bx-python-0.7.2            |           py27_0         1.8 MB
    cython-0.22                |           py27_0         5.0 MB
    decorator-3.4.0            |           py27_0           8 KB
    docutils-0.12              |           py27_0         636 KB
    drmaa-0.7.6                |           py27_0          39 KB
    hgapi-1.7.2                |           py27_0          28 KB
    isodate-0.5.1              |           py27_0          72 KB
    jdcal-1.0                  |           py27_0           9 KB
    markupsafe-0.23            |           py27_0          30 KB
    mysql-python-1.2.5         |           py27_0         107 KB
    networkx-1.9.1             |           py27_0         934 KB
    nose-1.3.7                 |           py27_0         194 KB
    numpy-1.9.2                |           py27_0         7.8 MB
    biopython-1.65             |       np19py27_0         2.2 MB
    openpyxl-2.1.2             |           py27_0         267 KB
    cgatreport-0.2.1           |           py27_0         221 KB
    pep8-1.6.2                 |           py27_0          47 KB
    psycopg2-2.6               |           py27_1         430 KB
    py2cairo-1.10.0            |           py27_2          36 KB
    pybedtools-0.6.8           |           py27_0        18.2 MB
    pygments-2.0.2             |           py27_0         1.0 MB
    pygresql-4.1.1             |           py27_0          95 KB
    pyparsing-2.0.3            |           py27_0          63 KB
    pysam-0.8.2.1              |           py27_1         7.8 MB
    pytz-2015.4                |           py27_0         174 KB
    ruffus-2.5                 |           py27_0         125 KB
    scipy-0.15.1               |       np19py27_0        37.0 MB
    setuptools-17.0            |           py27_0         341 KB
    sip-4.16.5                 |           py27_0         245 KB
    six-1.9.0                  |           py27_0          17 KB
    snowballstemmer-1.2.0      |           py27_0          73 KB
    sphinx_rtd_theme-0.1.7     |           py27_0         209 KB
    sphinxcontrib-programoutput-0.8|           py27_0        1003 KB
    sqlalchemy-1.0.4           |           py27_0         1.3 MB
    threadpool-1.2.7           |           py27_0          14 KB
    web.py-0.37                |           py27_0         154 KB
    weblogo-3.4                |           py27_0         496 KB
    xlwt-1.0.0                 |           py27_0         152 KB
    babel-1.3                  |           py27_1         2.3 MB
    html5lib-0.999             |           py27_0         172 KB
    jinja2-2.7.3               |           py27_1         308 KB
    patsy-0.3.0                |       np19py27_0         312 KB
    pip-7.0.3                  |           py27_0         1.4 MB
    pyqt-4.11.3                |           py27_1         3.5 MB
    python-dateutil-2.4.2      |           py27_0         219 KB
    scikit-learn-0.16.1        |       np19py27_0         7.9 MB
    singledispatch-3.4.0.3     |           py27_1          17 KB
    matplotlib-1.4.3           |       np19py27_2        44.5 MB
    pandas-0.16.1              |       np19py27_0        10.7 MB
    rdflib-4.1.2               |           py27_0         785 KB
    sphinx-1.3.1               |           py27_0         1.1 MB
    matplotlib-venn-0.1        |           py27_0          63 KB
    statsmodels-0.6.1          |       np19py27_0         5.0 MB
    ggplot-0.6.5               |       np19py27_0         6.5 MB
    r-3.1.3                    |                0           2 KB
    r-acepack-1.3_3.3          |                0          55 KB
    r-base64enc-0.1_2          |         r3.1.3_0          21 KB
    r-boot-1.3.13              |                0         571 KB
    r-brew-1.0_6               |                0          71 KB
    r-checkmate-1.5.1          |                0         254 KB
    r-cluster-1.15.3           |                0         456 KB
    r-codetools-0.2.9          |                0          44 KB
    r-colorspace-1.2_4         |                0         364 KB
    r-dbi-0.3.1                |                0         160 KB
    r-dichromat-2.0_0          |                0         146 KB
    r-digest-0.6.8             |                0          93 KB
    r-dynamictreecut-1.62      |                0          51 KB
    r-entropy-1.2.1            |                0          63 KB
    r-fastcluster-1.1.16       |                0         177 KB
    r-flashclust-1.01_2        |                0          20 KB
    r-foreign-0.8.62           |                0         218 KB
    r-formula-1.2_0            |                0         158 KB
    r-gtable-0.1.2             |                0          62 KB
    r-infotheo-1.2.0           |                0          59 KB
    r-iterators-1.0.7          |                0         304 KB
    r-kernsmooth-2.23.13       |                0          83 KB
    r-labeling-0.3             |                0          40 KB
    r-mass-7.3.37              |                0         1.0 MB
    r-matrixstats-0.14.0       |                0         267 KB
    r-nnet-7.3.8               |                0          96 KB
    r-proto-0.3_10             |                0         454 KB
    r-proxy-0.4_14             |                0         125 KB
    r-rcolorbrewer-1.1_2       |                0          26 KB
    r-rcpp-0.11.3              |                0         2.1 MB
    r-rpart-4.1.8              |                0         856 KB
    r-spatial-7.3.8            |                0         121 KB
    r-stringr-0.6.2            |                0          71 KB
    r-survival-2.37.7          |                0         4.3 MB
    r-xml-3.98_1.1             |                0         1.6 MB
    r-xtable-1.7_4             |         r3.1.3_0         372 KB
    rpy2-2.5.6                 |           py27_0         337 KB
    bioconductor-minet-3.24.0  |                0          99 KB
    bioconductor-timecourse-1.38.0|                0         791 KB
    cgat-devel-0.1             |       np19py27_1           1 KB
    r-bbmisc-1.9               |                0         268 KB
    r-class-7.3.11             |                0          81 KB
    r-dtw-1.17_1               |                0         723 KB
    r-foreach-1.4.2            |                0         367 KB
    r-lattice-0.20.29          |                0         695 KB
    r-munsell-0.4.2            |                0         121 KB
    r-plyr-1.8.1               |                0         772 KB
    r-rcpparmadillo-0.4.600.0  |                0         824 KB
    r-rsqlite-1.0.0            |                0         675 KB
    r-sendmailr-1.2_1          |                0          29 KB
    bioconductor-annotationdbi-1.28.1|                0         4.4 MB
    r-doparallel-1.0.8         |                0         178 KB
    r-e1071-1.6_4              |                0         420 KB
    r-fail-1.2                 |                0          41 KB
    r-latticeextra-0.6_26      |                0         2.0 MB
    r-locfit-1.5_9.1           |                0         422 KB
    r-matrix-1.1.4             |                0         3.0 MB
    r-nlme-3.1.118             |                0         2.0 MB
    r-reshape-0.8.5            |                0         125 KB
    r-reshape2-1.4.1           |                0         103 KB
    r-scales-0.2.4             |                0         149 KB
    bioconductor-annotate-1.44.0|                0         1.9 MB
    bioconductor-godb-3.0.0    |                0        23.0 MB
    bioconductor-mfuzz-2.26.0  |                0         624 KB
    bioconductor-org-hs-eg-db-3.0.0|                0        47.0 MB
    bioconductor-org-mm-eg-db-3.0.0|                0        44.6 MB
    r-batchjobs-1.5            |                0         395 KB
    r-ggplot2-1.0.0            |                0         2.6 MB
    r-hmisc-3.14_6             |                0         1.5 MB
    r-mgcv-1.8.4               |                0         1.7 MB
    bioconductor-biocparallel-1.0.3|                0         413 KB
    bioconductor-genefilter-1.48.1|                0         1.3 MB
    bioconductor-geneplotter-1.44.0|                0         1.4 MB
    bioconductor-masigpro-1.38.0|                0         803 KB
    r-recommended-3.1.3        |                0          900 B
    r-wgcna-1.43               |                0         1.7 MB
    bioconductor-deseq-1.18.0  |                0         1.9 MB
    bioconductor-deseq2-1.6.3  |                0         1.3 MB
    ------------------------------------------------------------
                                           Total:       722.6 MB

The following NEW packages will be INSTALLED:

    alabaster:                   0.7.3-py27_0     
    alignlib-lite:               0.2.3-py27_0     
    babel:                       1.3-py27_1       
    bedtools:                    2.21.0-0         
    bioconductor-annotate:       1.44.0-0         
    bioconductor-annotationdbi:  1.28.1-0         
    bioconductor-biobase:        2.26.0-0         
    bioconductor-biocgenerics:   0.12.1-0         
    bioconductor-biocparallel:   1.0.3-0          
    bioconductor-deseq:          1.18.0-0         
    bioconductor-deseq2:         1.6.3-0          
    bioconductor-dyndoc:         1.44.0-0         
    bioconductor-genefilter:     1.48.1-0         
    bioconductor-geneplotter:    1.44.0-0         
    bioconductor-genomeinfodb:   1.2.4-0          
    bioconductor-genomic-ranges: 1.18.4-0         
    bioconductor-godb:           3.0.0-0          
    bioconductor-impute:         1.40.0-0         
    bioconductor-iranges:        2.0.1-0          
    bioconductor-limma:          3.22.6-0         
    bioconductor-marray:         1.44.0-0         
    bioconductor-masigpro:       1.38.0-0         
    bioconductor-mfuzz:          2.26.0-0         
    bioconductor-minet:          3.24.0-0         
    bioconductor-org-hs-eg-db:   3.0.0-0          
    bioconductor-org-mm-eg-db:   3.0.0-0          
    bioconductor-preprocesscore: 1.28.0-0         
    bioconductor-s4vectors:      0.4.0-0          
    bioconductor-timecourse:     1.38.0-0         
    bioconductor-tk-widgets:     1.44.0-0         
    bioconductor-widget-tools:   1.44.0-0         
    bioconductor-xvector:        0.6.0-0          
    biopython:                   1.65-np19py27_0  
    brewer2mpl:                  1.4.1-py27_0     
    bx-python:                   0.7.2-py27_0     
    bzip2:                       1.0.6-0          
    cairo:                       1.12.18-4        
    cgat-devel:                  0.1-np19py27_1   
    cgatreport:                  0.2.1-py27_0     
    cloog:                       0.18.0-0         
    cython:                      0.22-py27_0      
    decorator:                   3.4.0-py27_0     
    docutils:                    0.12-py27_0      
    drmaa:                       0.7.6-py27_0     
    fontconfig:                  2.11.1-4         
    freetype:                    2.5.2-2          
    gc-profile:                  2.0-0            
    gcc:                         4.8.4-1          
    ggplot:                      0.6.5-np19py27_0 
    glib:                        2.43.0-2         
    gmp:                         5.1.2-5          
    harfbuzz:                    0.9.35-6         
    hgapi:                       1.7.2-py27_0     
    html5lib:                    0.999-py27_0     
    isl:                         0.12.2-1         
    isodate:                     0.5.1-py27_0     
    jdcal:                       1.0-py27_0       
    jinja2:                      2.7.3-py27_1     
    jpeg:                        8d-0             
    libffi:                      3.0.13-3         
    libgcc:                      4.8.4-1          
    libpng:                      1.6.17-0         
    libtiff:                     4.0.2-1          
    libxml2:                     2.9.0-0          
    markupsafe:                  0.23-py27_0      
    matplotlib:                  1.4.3-np19py27_2 
    matplotlib-venn:             0.1-py27_0       
    mpc:                         1.0.2-0          
    mpfr:                        3.1.2-0          
    mysql:                       5.1.73-0         
    mysql-python:                1.2.5-py27_0     
    ncurses:                     5.9-4            
    networkx:                    1.9.1-py27_0     
    nose:                        1.3.7-py27_0     
    numpy:                       1.9.2-py27_0     
    openpyxl:                    2.1.2-py27_0     
    openssl:                     1.0.1k-1         
    pandas:                      0.16.1-np19py27_0
    pango:                       1.36.8-3         
    patsy:                       0.3.0-np19py27_0 
    pcre:                        8.31-0           
    pep8:                        1.6.2-py27_0     
    pip:                         7.0.3-py27_0     
    pixman:                      0.26.2-0         
    psycopg2:                    2.6-py27_1       
    py2cairo:                    1.10.0-py27_2    
    pybedtools:                  0.6.8-py27_0     
    pygments:                    2.0.2-py27_0     
    pygresql:                    4.1.1-py27_0     
    pyparsing:                   2.0.3-py27_0     
    pyqt:                        4.11.3-py27_1    
    pysam:                       0.8.2.1-py27_1   
    python:                      2.7.10-0         
    python-dateutil:             2.4.2-py27_0     
    pytz:                        2015.4-py27_0    
    pyyaml:                      3.11-py27_0      
    qt:                          4.8.6-3          
    r:                           3.1.3-0          
    r-acepack:                   1.3_3.3-0        
    r-base:                      3.1.3-2          
    r-base64enc:                 0.1_2-r3.1.3_0   
    r-batchjobs:                 1.5-0            
    r-bbmisc:                    1.9-0            
    r-boot:                      1.3.13-0         
    r-brew:                      1.0_6-0          
    r-checkmate:                 1.5.1-0          
    r-class:                     7.3.11-0         
    r-cluster:                   1.15.3-0         
    r-codetools:                 0.2.9-0          
    r-colorspace:                1.2_4-0          
    r-dbi:                       0.3.1-0          
    r-dichromat:                 2.0_0-0          
    r-digest:                    0.6.8-0          
    r-doparallel:                1.0.8-0          
    r-dtw:                       1.17_1-0         
    r-dynamictreecut:            1.62-0           
    r-e1071:                     1.6_4-0          
    r-entropy:                   1.2.1-0          
    r-fail:                      1.2-0            
    r-fastcluster:               1.1.16-0         
    r-flashclust:                1.01_2-0         
    r-foreach:                   1.4.2-0          
    r-foreign:                   0.8.62-0         
    r-formula:                   1.2_0-0          
    r-ggplot2:                   1.0.0-0          
    r-gtable:                    0.1.2-0          
    r-hmisc:                     3.14_6-0         
    r-infotheo:                  1.2.0-0          
    r-iterators:                 1.0.7-0          
    r-kernsmooth:                2.23.13-0        
    r-labeling:                  0.3-0            
    r-lattice:                   0.20.29-0        
    r-latticeextra:              0.6_26-0         
    r-locfit:                    1.5_9.1-0        
    r-mass:                      7.3.37-0         
    r-matrix:                    1.1.4-0          
    r-matrixstats:               0.14.0-0         
    r-mgcv:                      1.8.4-0          
    r-munsell:                   0.4.2-0          
    r-nlme:                      3.1.118-0        
    r-nnet:                      7.3.8-0          
    r-plyr:                      1.8.1-0          
    r-proto:                     0.3_10-0         
    r-proxy:                     0.4_14-0         
    r-rcolorbrewer:              1.1_2-0          
    r-rcpp:                      0.11.3-0         
    r-rcpparmadillo:             0.4.600.0-0      
    r-recommended:               3.1.3-0          
    r-reshape:                   0.8.5-0          
    r-reshape2:                  1.4.1-0          
    r-rpart:                     4.1.8-0          
    r-rsqlite:                   1.0.0-0          
    r-scales:                    0.2.4-0          
    r-sendmailr:                 1.2_1-0          
    r-spatial:                   7.3.8-0          
    r-stringr:                   0.6.2-0          
    r-survival:                  2.37.7-0         
    r-wgcna:                     1.43-0           
    r-xml:                       3.98_1.1-0       
    r-xtable:                    1.7_4-r3.1.3_0   
    rdflib:                      4.1.2-py27_0     
    readline:                    6.2.5-1          
    rpy2:                        2.5.6-py27_0     
    ruffus:                      2.5-py27_0       
    scikit-learn:                0.16.1-np19py27_0
    scipy:                       0.15.1-np19py27_0
    setuptools:                  17.0-py27_0      
    singledispatch:              3.4.0.3-py27_1   
    sip:                         4.16.5-py27_0    
    six:                         1.9.0-py27_0     
    snowballstemmer:             1.2.0-py27_0     
    sphinx:                      1.3.1-py27_0     
    sphinx_rtd_theme:            0.1.7-py27_0     
    sphinxcontrib-programoutput: 0.8-py27_0       
    sqlalchemy:                  1.0.4-py27_0     
    sqlite:                      3.8.4.1-1        
    statsmodels:                 0.6.1-np19py27_0 
    system:                      5.8-2            
    threadpool:                  1.2.7-py27_0     
    tk:                          8.5.18-0         
    ucsc-cgat:                   4-0              
    web.py:                      0.37-py27_0      
    weblogo:                     3.4-py27_0       
    xlwt:                        1.0.0-py27_0     
    yaml:                        0.1.4-0          
    zlib:                        1.2.8-0          

#
# To activate this environment, use:
# $ source activate test-gcc
#
# To deactivate this environment, use:
# $ source deactivate
#

and this is the result:
http://share-pic.net/image/EfP

Any other suggestions?

Many thanks,
Sebastian.

@asmeurer
Copy link
Contributor

asmeurer commented Jun 5, 2015

@sebastian-luna-valero I guess your issue was something else.

@asmeurer asmeurer reopened this Jun 5, 2015
@kalefranz kalefranz added source::community catch-all for issues filed by community members type::feature request for a new feature or capability labels May 12, 2017
@github-actions
Copy link

github-actions bot commented Aug 19, 2021

Hi there, thank you for your contribution to Conda!

This issue has been automatically marked as stale because it has not had recent activity. It will be closed automatically if no further activity occurs.

If you would like this issue to remain open please:

  1. Verify that you can still reproduce the issue in the latest version of Conda
  2. Comment that the issue is still reproducible and include:
  • What version of Conda you reproduced the issue on
  • What OS and version you reproduced the issue on
  • What steps you followed to reproduce the issue
  1. It would also be helpful to have the output of the following commands available:
  • conda info
  • conda config --show-sources
  • conda list --show-channel-urls

NOTE: If this issue was closed prematurely, please leave a comment and we will gladly reopen the issue.

In case this issue was originally about a project that is covered by the Anaconda issue tracker (e.g. Anaconda, Miniconda, packages built by Anaconda, Inc. like Anaconda Navigator etc), please reopen the issue there again.

Thanks!

@github-actions github-actions bot added the stale [bot] marked as stale due to inactivity label Aug 19, 2021
@github-actions
Copy link

Hi again!

This issue has been closed since it has not had recent activity.
Please don't hesitate to leave a comment if that was done prematurely.

Thank you for your contribution.

@github-actions github-actions bot added the stale::closed [bot] closed after being marked as stale label Nov 18, 2021
@github-actions github-actions bot added the locked [bot] locked due to inactivity label Nov 25, 2022
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 25, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
locked [bot] locked due to inactivity source::community catch-all for issues filed by community members stale::closed [bot] closed after being marked as stale stale [bot] marked as stale due to inactivity type::feature request for a new feature or capability
Projects
None yet
Development

No branches or pull requests

5 participants