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

torchvision conda packaging fails to resolve when opencv constraint is present #4648

Open
soumith opened this issue Oct 19, 2021 · 26 comments
Open
Assignees
Labels
release-issue For release-related issues topic: binaries

Comments

@soumith
Copy link
Member

soumith commented Oct 19, 2021

🐛 Describe the bug

This seems to be somewhat serious to figure out and resolve by the next release or asap.

Here's how the bug manifests.
There's a very common scenario when someone installs torchvision and opencv within the same conda environment.

However, running the following command:

conda create -n tvtest python=3.7 "torchvision>=0.10" "cudatoolkit>=11" opencv -c pytorch -c conda-forge

This results in the torchvision resolving as the cpu torchvision packge from conda-forge, the pytorch being resolved from pytorch channel, and the worst part, old versions of pytorch and pytorch-cpu being installed.

Tested with latest anaconda: conda --version resolves to conda 4.10.3.

Removing opencv in the above command results in torchvision and pytorch correctly resolving to their CUDA binaries, and pytorch-cpu not being installed.

cc: @malfet

Versions

Collecting environment information...
PyTorch version: N/A
Is debug build: N/A
CUDA used to build PyTorch: N/A
ROCM used to build PyTorch: N/A

OS: Ubuntu 20.04.2 LTS (x86_64)
GCC version: (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0
Clang version: Could not collect
CMake version: Could not collect
Libc version: glibc-2.31

Python version: 3.9.5 (default, Jun  4 2021, 12:28:51)  [GCC 7.5.0] (64-bit runtime)
Python platform: Linux-5.11.0-27-generic-x86_64-with-glibc2.31
Is CUDA available: N/A
CUDA runtime version: 11.1.105
GPU models and configuration:
GPU 0: GeForce GTX TITAN X
GPU 1: GeForce GTX TITAN X

Nvidia driver version: 460.73.01
cuDNN version: Probably one of the following:
/usr/local/cuda-11.1/targets/x86_64-linux/lib/libcudnn.so.8.0.5
/usr/local/cuda-11.1/targets/x86_64-linux/lib/libcudnn_adv_infer.so.8.0.5
/usr/local/cuda-11.1/targets/x86_64-linux/lib/libcudnn_adv_train.so.8.0.5
/usr/local/cuda-11.1/targets/x86_64-linux/lib/libcudnn_cnn_infer.so.8.0.5
/usr/local/cuda-11.1/targets/x86_64-linux/lib/libcudnn_cnn_train.so.8.0.5
/usr/local/cuda-11.1/targets/x86_64-linux/lib/libcudnn_ops_infer.so.8.0.5
/usr/local/cuda-11.1/targets/x86_64-linux/lib/libcudnn_ops_train.so.8.0.5
HIP runtime version: N/A
MIOpen runtime version: N/A

Versions of relevant libraries:
[pip3] Could not collect
[conda] # packages in environment at /home/soumith/miniconda3:
@soumith
Copy link
Member Author

soumith commented Oct 19, 2021

An easier failure case is:

Create an env with opencv

conda create -n droidlet python=3.7 opencv -c conda-forge

Try and install torchvision from the pytorch channel:

conda install -n droidlet "torchvision>=0.10"  -c pytorch

@soumith
Copy link
Member Author

soumith commented Oct 19, 2021

@datumbox just fyi, I confirmed that this is not a dependency issue, but a packaging issue -- i.e. our packaging seems to be at fault.

@datumbox
Copy link
Contributor

Sounds good, thanks for investigating.

@soumith
Copy link
Member Author

soumith commented Oct 19, 2021

additional data point, having dlib in the environment also fails, it's not specific to having opencv. So there must be a common denominator conflict.

conda create -n dlibtest python=3.7 dlib -c conda-forge
conda activate dlibtest
conda install "torchvision>=0.10" -c pytorch

@malfet
Copy link
Contributor

malfet commented Oct 19, 2021

I believe the conflict comes from ffmpeg incopatiblity between torchvision and opencv

@soumith
Copy link
Member Author

soumith commented Oct 19, 2021

I thought it was ffmpeg, but dlib doesn't have ffmpeg dependency.

@malfet
Copy link
Contributor

malfet commented Oct 19, 2021

Package jpeg conflicts for:
torchvision[version='>=0.10'] -> jpeg[version='<=9b']
dlib -> jpeg[version='>=9d,<10a']

Edit: and libjpeg dependency is versioned in 0.10 release

run:
- python
- libpng
- ffmpeg >=4.2 # [not win]
# NOTE: Pinned to fix issues with size_t on Windows
- jpeg <=9b

@malfet
Copy link
Contributor

malfet commented Oct 19, 2021

Alas, pytorch from nightly also have conflicts:

Package numpy conflicts for:
dlib -> numpy[version='>=1.17.5,<2.0a0']
torchvision[version='>=0.10'] -> numpy[version='>=1.11']

@soumith
Copy link
Member Author

soumith commented Oct 19, 2021

this is weird, because I don't see a conflict for numpy here. it seems satisfiable.

@malfet
Copy link
Contributor

malfet commented Oct 19, 2021

Interestingly, changing order of operations works:

conda create -n pytorch-forge python=3.7 "torchvision>=0.11" cpuonly -c pytorch-nightly -c conda-forge
conda activate pytorch-forge
conda install dlib -c conda-forge

@malfet malfet self-assigned this Oct 19, 2021
@soumith
Copy link
Member Author

soumith commented Oct 19, 2021

the reason changing the order of operations probably works is because it then installs an old dlib version that satisfies jpeg<=9b.

For me, the following simply changes pytorch / torchvision to conda-forge:

conda create -n pytorch-forge python=3.7 "torchvision>=0.10.1"  -c pytorch -c conda-forge
conda activate pytorch-forge
$ conda install "dlib" -c conda-forge

Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Solving environment: failed with repodata from current_repodata.json, will retry with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: done

## Package Plan ##

  environment location: /home/soumith/miniconda3/envs/pytorch-forge

  added / updated specs:
    - dlib


The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    pytorch-cpu-1.1.0          |   py37he1b5a44_0        50.7 MB  conda-forge
    ------------------------------------------------------------
                                           Total:        50.7 MB

The following NEW packages will be INSTALLED:

  cffi               conda-forge/linux-64::cffi-1.14.6-py37h036bc23_1
  dlib               conda-forge/linux-64::dlib-19.22.0-py37hc3f859c_0
  libblas            conda-forge/linux-64::libblas-3.9.0-12_linux64_mkl
  libcblas           conda-forge/linux-64::libcblas-3.9.0-12_linux64_mkl
  liblapack          conda-forge/linux-64::liblapack-3.9.0-12_linux64_mkl
  numpy              conda-forge/linux-64::numpy-1.21.2-py37h31617e3_0
  pycparser          conda-forge/noarch::pycparser-2.20-pyh9f0ad1d_2
  pytorch-cpu        conda-forge/linux-64::pytorch-cpu-1.1.0-py37he1b5a44_0

The following packages will be UPDATED:

  jpeg                        pkgs/main::jpeg-9b-h024ee3a_2 --> conda-forge::jpeg-9d-h36c2ea0_0

The following packages will be SUPERSEDED by a higher-priority channel:

  torchvision        pytorch::torchvision-0.10.1-py37_cu111 --> conda-forge::torchvision-0.10.1-py37h9e046cd_0_cpu

@malfet
Copy link
Contributor

malfet commented Oct 20, 2021

Following command correctly installs latest PyTorch-1.10 and TorchVision-0.11 RC:

$ conda create -n tvtest python=3.7 "torchvision>=0.10" "cudatoolkit=11.3" opencv -c pytorch-test -c conda-forge

If cudatoolkit version is not pinned, then conda-forge version is installed, as there are no pytorch/torchvision builds against cuda-11.4, which is the latest one available on conda-forge

@vadimkantorov
Copy link

For now, my workaround is to install torchvision from pip in this case. I also propose to delete torchvision 0.2.2 altogether form conda

@fmassa
Copy link
Member

fmassa commented Oct 20, 2021

Note that we have unpinned jpeg in #4288, so hopefully this should fix @soumith problem with the latest version of torchvision?

@vadimkantorov
Copy link

I think it should be good to have some CI testing for these widely-used libraries (as in pytorch/pytorch#62590), at least we would know that something stopped working (with hopefully some automatic publication to pytorch.org/installation_commands_testing.txt or something similar)

@soumith
Copy link
Member Author

soumith commented Oct 20, 2021

we just added CI testing for these in pytorch/pytorch-integration-testing#21 yesterday

@vadimkantorov
Copy link

It would be cool to have these test results auto-published online in some readable way.

@vadimkantorov
Copy link

vadimkantorov commented Oct 20, 2021

Workaround of pip install torchvision somehow leads to installed torchvision version for cuda 10.2. Does pip not have version for 11.1?

>>> torchvision.__version__
'0.10.1+cu102'

despite the fact that pytorch was

>>> import torch; torch.version.cuda
'11.1'

@vadimkantorov
Copy link

vadimkantorov commented Oct 27, 2021

How do I pip install torchvision for a specific cuda version?

pip install torchvision==0.10.1+cu111
# ERROR: Could not find a version that satisfies the requirement torchvision==0.10.1+cu111 (from versions: 0.1.6, 0.1.7, 0.1.8, 0.1.9, 0.2.0, 0.2.1, 0.2.2, 0.2.2.post2, 0.2.2.post3, 0.8.2, 0.9.0, 0.9.1, 0.10.0, 0.10.1, 0.11.0, 0.11.1)
ERROR: No matching distribution found for torchvision==0.10.1+cu111

torchvision README has no examples about specifying version constraints or CUDA versions

@vadimkantorov
Copy link

vadimkantorov commented Oct 27, 2021

Also, PyPI page for torchvision doesn't mention torch 1.9.1 and 1.10.0: https://pypi.org/project/torchvision/ @fmassa @soumith, same for main torchvision README

@vadimkantorov
Copy link

vadimkantorov commented Oct 27, 2021

I found a solution: pip install torchvision==0.10.1+cu111 -f https://download.pytorch.org/whl/cu111/torch_stable.html, but it would be nice to recommend this explicitly in README and also explain whether -f argument is mandatory

@malfet
Copy link
Contributor

malfet commented Oct 27, 2021

@vadimkantorov PyPI does not allow publish more than one version of the same version of the binary, nor has a binary larger than 1Gb, this is why CUDA-10.2 is still default there. And installation instructions for CUDA-11.3 are documented in https://pytorch.org/get-started/locally/

Also, please note that CUDA-11.1 is not supported for pytorch-1.10, torchvision-0.11.1 (i.e. binaries were published without any testing)

@vadimkantorov
Copy link

That said, they're not documented in README of torchvision, and by consequence on PyPI :(

@vadimkantorov
Copy link

vadimkantorov commented Oct 27, 2021

It would also be good if the error of torchvision about incompatibility of torchvision.ops / CUDA directly directly pointed how to fix it and install the good compatible torchvision version corresponding to installed torch and cuda

@pmeier
Copy link
Collaborator

pmeier commented Dec 21, 2022

@malfet It seems when following the official installation instructions and adding opencv / -c conda-forge on top works for a pinned Python version as well as CPU / CUDA.

$ conda create -n py-cu116 python pytorch torchvision pytorch-cuda=11.6 -c pytorch -c nvidia --dry-run
Log
The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    ca-certificates-2022.12.7  |       ha878542_0         143 KB  conda-forge
    certifi-2022.12.7          |     pyhd8ed1ab_0         147 KB  conda-forge
    cffi-1.15.1                |  py310h255011f_3         231 KB  conda-forge
    cryptography-38.0.4        |  py310h600f1e7_0         1.3 MB  conda-forge
    cuda-11.6.1                |                0           1 KB  nvidia
    cuda-cccl-11.6.55          |       hf6102b2_0         1.2 MB  nvidia
    cuda-command-line-tools-11.6.2|                0           1 KB  nvidia
    cuda-compiler-11.6.2       |                0           1 KB  nvidia
    cuda-cudart-11.6.55        |       he381448_0         194 KB  nvidia
    cuda-cudart-dev-11.6.55    |       h42ad0f4_0         1.0 MB  nvidia
    cuda-cuobjdump-11.6.124    |       h2eeebcb_0         134 KB  nvidia
    cuda-cupti-11.6.124        |       h86345e5_0        22.1 MB  nvidia
    cuda-cuxxfilt-11.6.124     |       hecbf4f6_0         283 KB  nvidia
    cuda-driver-dev-11.6.55    |                0          16 KB  nvidia
    cuda-gdb-12.0.90           |                0         5.3 MB  nvidia
    cuda-libraries-11.6.1      |                0           1 KB  nvidia
    cuda-libraries-dev-11.6.1  |                0           2 KB  nvidia
    cuda-memcheck-11.8.86      |                0         168 KB  nvidia
    cuda-nsight-12.0.78        |                0       113.6 MB  nvidia
    cuda-nsight-compute-12.0.0 |                0           1 KB  nvidia
    cuda-nvcc-11.6.124         |       hbba6d2d_0        42.2 MB  nvidia
    cuda-nvdisasm-12.0.76      |                0        47.9 MB  nvidia
    cuda-nvml-dev-11.6.55      |       haa9ef22_0          65 KB  nvidia
    cuda-nvprof-12.0.90        |                0         4.3 MB  nvidia
    cuda-nvprune-11.6.124      |       he22ec0a_0          65 KB  nvidia
    cuda-nvrtc-11.6.124        |       h020bade_0        17.1 MB  nvidia
    cuda-nvrtc-dev-11.6.124    |       h249d397_0        16.8 MB  nvidia
    cuda-nvtx-11.6.124         |       h0630a44_0          58 KB  nvidia
    cuda-nvvp-12.0.90          |                0       114.3 MB  nvidia
    cuda-runtime-11.6.1        |                0           1 KB  nvidia
    cuda-samples-11.6.101      |       h8efea70_0           5 KB  nvidia
    cuda-sanitizer-api-12.0.90 |                0        16.6 MB  nvidia
    cuda-toolkit-11.6.1        |                0           1 KB  nvidia
    cuda-tools-11.6.1          |                0           1 KB  nvidia
    cuda-visual-tools-11.6.1   |                0           1 KB  nvidia
    dbus-1.13.6                |       h5008d03_3         604 KB  conda-forge
    ffmpeg-5.1.2               | gpl_h8dda1f0_105         9.2 MB  conda-forge
    fftw-3.3.10                |nompi_hf0379b8_106         2.1 MB  conda-forge
    gds-tools-1.5.0.59         |                0        40.9 MB  nvidia
    graphite2-1.3.13           |    h58526e2_1001         102 KB  conda-forge
    gst-plugins-base-1.21.3    |       h4243ec0_1         2.6 MB  conda-forge
    gstreamer-1.21.3           |       h25f0c4b_1         1.9 MB  conda-forge
    gstreamer-orc-0.4.33       |       h166bdaf_0         299 KB  conda-forge
    harfbuzz-6.0.0             |       h8e241bc_0         1.2 MB  conda-forge
    hdf5-1.12.2                |nompi_h4df4325_100         3.5 MB  conda-forge
    jack-1.9.21                |       h583fa2b_2         450 KB  conda-forge
    krb5-1.20.1                |       h81ceb04_0         1.3 MB  conda-forge
    lcms2-2.14                 |       hfd0df8a_1         235 KB  conda-forge
    libclang-15.0.6            |default_h2e3cab8_0         129 KB  conda-forge
    libclang13-15.0.6          |default_h3a83d3e_0         9.0 MB  conda-forge
    libcublas-11.9.2.110       |       h5e84587_0       300.8 MB  nvidia
    libcublas-dev-11.9.2.110   |       h5c901ab_0       310.9 MB  nvidia
    libcufft-10.7.1.112        |       hf425ae0_0        93.6 MB  nvidia
    libcufft-dev-10.7.1.112    |       ha5ce4c0_0       197.2 MB  nvidia
    libcufile-1.5.0.59         |                0         754 KB  nvidia
    libcufile-dev-1.5.0.59     |                0          13 KB  nvidia
    libcups-2.3.3              |       h36d4200_3         4.3 MB  conda-forge
    libcurand-10.3.1.50        |                0        51.7 MB  nvidia
    libcurand-dev-10.3.1.50    |                0         449 KB  nvidia
    libcurl-7.87.0             |       hdc1c0ab_0         341 KB  conda-forge
    libcusolver-11.3.4.124     |       h33c3c4e_0        87.0 MB  nvidia
    libcusparse-11.7.2.124     |       h7538f96_0       160.9 MB  nvidia
    libcusparse-dev-11.7.2.124 |       hbbe9722_0       328.9 MB  nvidia
    libdb-6.2.32               |       h9c3ff4c_0        23.3 MB  conda-forge
    libgcrypt-1.10.1           |       h166bdaf_0         703 KB  conda-forge
    libgpg-error-1.45          |       hc0c96e0_0         286 KB  conda-forge
    libhwloc-2.8.0             |       h32351e8_1         3.0 MB  conda-forge
    libllvm15-15.0.6           |       h63197d8_0        30.5 MB  conda-forge
    libnpp-11.6.3.124          |       hd2722f0_0       118.4 MB  nvidia
    libnpp-dev-11.6.3.124      |       h3c42840_0       115.6 MB  nvidia
    libnvjpeg-11.6.2.124       |       hd473ad6_0         2.3 MB  nvidia
    libnvjpeg-dev-11.6.2.124   |       hb5906b9_0         2.0 MB  nvidia
    libopencv-4.6.0            |  py310h5bd1119_9        28.6 MB  conda-forge
    libpq-15.1                 |       hb675445_2         2.4 MB  conda-forge
    libprotobuf-3.21.12        |       h3eb15da_0         2.1 MB  conda-forge
    libsndfile-1.1.0           |       hcb278e6_1         341 KB  conda-forge
    libsystemd0-252            |       h2a991cd_0         384 KB  conda-forge
    libtiff-4.5.0              |       h82bc61c_0         398 KB  conda-forge
    libunistring-0.9.10        |       h7f98852_0         1.4 MB  conda-forge
    mpg123-1.31.1              |       h27087fc_0         522 KB  conda-forge
    mysql-common-8.0.31        |       h26416b9_0         1.9 MB  conda-forge
    mysql-libs-8.0.31          |       hbc51c84_0         1.9 MB  conda-forge
    nsight-compute-2022.4.0.15 |                0       764.0 MB  nvidia
    nspr-4.35                  |       h27087fc_0         222 KB  conda-forge
    nss-3.82                   |       he02c5a1_0         1.9 MB  conda-forge
    numpy-1.24.0               |  py310h08bbf29_0         6.3 MB  conda-forge
    opencv-4.6.0               |  py310hff52083_9          24 KB  conda-forge
    openjpeg-2.5.0             |       hfec8fc6_2         344 KB  conda-forge
    openssl-3.0.7              |       h0b41bf4_1         2.5 MB  conda-forge
    pillow-9.2.0               |  py310h023d228_4        43.0 MB  conda-forge
    pulseaudio-16.1            |       h126f2b6_0         1.7 MB  conda-forge
    py-opencv-4.6.0            |  py310hfdc917e_9         1.1 MB  conda-forge
    python-3.10.8              |h4a9ceb5_0_cpython        22.1 MB  conda-forge
    pytorch-1.13.1             |py3.10_cuda11.6_cudnn8.3.2_0        1.27 GB  pytorch
    pytorch-cuda-11.6          |       h867d48c_1           3 KB  pytorch
    pytorch-mutex-1.0          |             cuda           3 KB  pytorch
    qt-main-5.15.6             |       hf6cd601_5        52.3 MB  conda-forge
    setuptools-65.6.3          |     pyhd8ed1ab_0         619 KB  conda-forge
    svt-av1-1.4.1              |       hcb278e6_0         2.4 MB  conda-forge
    tbb-2021.7.0               |       h924138e_1         1.5 MB  conda-forge
    torchvision-0.14.1         |      py310_cu116         7.8 MB  pytorch
    tzdata-2022g               |       h191b570_0         106 KB  conda-forge
    xcb-util-0.4.0             |       h166bdaf_0          20 KB  conda-forge
    xcb-util-keysyms-0.4.0     |       h166bdaf_0          12 KB  conda-forge
    xcb-util-wm-0.4.1          |       h166bdaf_0          55 KB  conda-forge
    xorg-fixesproto-5.0        |    h7f98852_1002           9 KB  conda-forge
    xorg-inputproto-2.3.2      |    h7f98852_1002          19 KB  conda-forge
    xorg-kbproto-1.0.7         |    h7f98852_1002          27 KB  conda-forge
    xorg-libice-1.0.10         |       h7f98852_0          58 KB  conda-forge
    xorg-renderproto-0.11.1    |    h7f98852_1002           9 KB  conda-forge
    xorg-xextproto-7.3.0       |    h7f98852_1002          28 KB  conda-forge
    xorg-xproto-7.0.31         |    h7f98852_1007          73 KB  conda-forge
    ------------------------------------------------------------
                                           Total:        4.46 GB

The following NEW packages will be INSTALLED:

  _libgcc_mutex      conda-forge/linux-64::_libgcc_mutex-0.1-conda_forge 
  _openmp_mutex      conda-forge/linux-64::_openmp_mutex-4.5-2_kmp_llvm 
  alsa-lib           conda-forge/linux-64::alsa-lib-1.2.8-h166bdaf_0 
  aom                conda-forge/linux-64::aom-3.5.0-h27087fc_0 
  attr               conda-forge/linux-64::attr-2.5.1-h166bdaf_1 
  blas               conda-forge/linux-64::blas-2.116-mkl 
  blas-devel         conda-forge/linux-64::blas-devel-3.9.0-16_linux64_mkl 
  brotlipy           conda-forge/linux-64::brotlipy-0.7.0-py310h5764c6d_1005 
  bzip2              conda-forge/linux-64::bzip2-1.0.8-h7f98852_4 
  c-ares             conda-forge/linux-64::c-ares-1.18.1-h7f98852_0 
  ca-certificates    conda-forge/linux-64::ca-certificates-2022.12.7-ha878542_0 
  cairo              conda-forge/linux-64::cairo-1.16.0-ha61ee94_1014 
  certifi            conda-forge/noarch::certifi-2022.12.7-pyhd8ed1ab_0 
  cffi               conda-forge/linux-64::cffi-1.15.1-py310h255011f_3 
  charset-normalizer conda-forge/noarch::charset-normalizer-2.1.1-pyhd8ed1ab_0 
  cryptography       conda-forge/linux-64::cryptography-38.0.4-py310h600f1e7_0 
  cuda               nvidia/linux-64::cuda-11.6.1-0 
  cuda-cccl          nvidia/linux-64::cuda-cccl-11.6.55-hf6102b2_0 
  cuda-command-line~ nvidia/linux-64::cuda-command-line-tools-11.6.2-0 
  cuda-compiler      nvidia/linux-64::cuda-compiler-11.6.2-0 
  cuda-cudart        nvidia/linux-64::cuda-cudart-11.6.55-he381448_0 
  cuda-cudart-dev    nvidia/linux-64::cuda-cudart-dev-11.6.55-h42ad0f4_0 
  cuda-cuobjdump     nvidia/linux-64::cuda-cuobjdump-11.6.124-h2eeebcb_0 
  cuda-cupti         nvidia/linux-64::cuda-cupti-11.6.124-h86345e5_0 
  cuda-cuxxfilt      nvidia/linux-64::cuda-cuxxfilt-11.6.124-hecbf4f6_0 
  cuda-driver-dev    nvidia/linux-64::cuda-driver-dev-11.6.55-0 
  cuda-gdb           nvidia/linux-64::cuda-gdb-12.0.90-0 
  cuda-libraries     nvidia/linux-64::cuda-libraries-11.6.1-0 
  cuda-libraries-dev nvidia/linux-64::cuda-libraries-dev-11.6.1-0 
  cuda-memcheck      nvidia/linux-64::cuda-memcheck-11.8.86-0 
  cuda-nsight        nvidia/linux-64::cuda-nsight-12.0.78-0 
  cuda-nsight-compu~ nvidia/linux-64::cuda-nsight-compute-12.0.0-0 
  cuda-nvcc          nvidia/linux-64::cuda-nvcc-11.6.124-hbba6d2d_0 
  cuda-nvdisasm      nvidia/linux-64::cuda-nvdisasm-12.0.76-0 
  cuda-nvml-dev      nvidia/linux-64::cuda-nvml-dev-11.6.55-haa9ef22_0 
  cuda-nvprof        nvidia/linux-64::cuda-nvprof-12.0.90-0 
  cuda-nvprune       nvidia/linux-64::cuda-nvprune-11.6.124-he22ec0a_0 
  cuda-nvrtc         nvidia/linux-64::cuda-nvrtc-11.6.124-h020bade_0 
  cuda-nvrtc-dev     nvidia/linux-64::cuda-nvrtc-dev-11.6.124-h249d397_0 
  cuda-nvtx          nvidia/linux-64::cuda-nvtx-11.6.124-h0630a44_0 
  cuda-nvvp          nvidia/linux-64::cuda-nvvp-12.0.90-0 
  cuda-runtime       nvidia/linux-64::cuda-runtime-11.6.1-0 
  cuda-samples       nvidia/linux-64::cuda-samples-11.6.101-h8efea70_0 
  cuda-sanitizer-api nvidia/linux-64::cuda-sanitizer-api-12.0.90-0 
  cuda-toolkit       nvidia/linux-64::cuda-toolkit-11.6.1-0 
  cuda-tools         nvidia/linux-64::cuda-tools-11.6.1-0 
  cuda-visual-tools  nvidia/linux-64::cuda-visual-tools-11.6.1-0 
  dbus               conda-forge/linux-64::dbus-1.13.6-h5008d03_3 
  expat              conda-forge/linux-64::expat-2.5.0-h27087fc_0 
  ffmpeg             conda-forge/linux-64::ffmpeg-5.1.2-gpl_h8dda1f0_105 
  fftw               conda-forge/linux-64::fftw-3.3.10-nompi_hf0379b8_106 
  font-ttf-dejavu-s~ conda-forge/noarch::font-ttf-dejavu-sans-mono-2.37-hab24e00_0 
  font-ttf-inconsol~ conda-forge/noarch::font-ttf-inconsolata-3.000-h77eed37_0 
  font-ttf-source-c~ conda-forge/noarch::font-ttf-source-code-pro-2.038-h77eed37_0 
  font-ttf-ubuntu    conda-forge/noarch::font-ttf-ubuntu-0.83-hab24e00_0 
  fontconfig         conda-forge/linux-64::fontconfig-2.14.1-hc2a2eb6_0 
  fonts-conda-ecosy~ conda-forge/noarch::fonts-conda-ecosystem-1-0 
  fonts-conda-forge  conda-forge/noarch::fonts-conda-forge-1-0 
  freeglut           conda-forge/linux-64::freeglut-3.2.2-h9c3ff4c_1 
  freetype           conda-forge/linux-64::freetype-2.12.1-hca18f0e_1 
  gds-tools          nvidia/linux-64::gds-tools-1.5.0.59-0 
  gettext            conda-forge/linux-64::gettext-0.21.1-h27087fc_0 
  glib               conda-forge/linux-64::glib-2.74.1-h6239696_1 
  glib-tools         conda-forge/linux-64::glib-tools-2.74.1-h6239696_1 
  gmp                conda-forge/linux-64::gmp-6.2.1-h58526e2_0 
  gnutls             conda-forge/linux-64::gnutls-3.7.8-hf3e180e_0 
  graphite2          conda-forge/linux-64::graphite2-1.3.13-h58526e2_1001 
  gst-plugins-base   conda-forge/linux-64::gst-plugins-base-1.21.3-h4243ec0_1 
  gstreamer          conda-forge/linux-64::gstreamer-1.21.3-h25f0c4b_1 
  gstreamer-orc      conda-forge/linux-64::gstreamer-orc-0.4.33-h166bdaf_0 
  harfbuzz           conda-forge/linux-64::harfbuzz-6.0.0-h8e241bc_0 
  hdf5               conda-forge/linux-64::hdf5-1.12.2-nompi_h4df4325_100 
  icu                conda-forge/linux-64::icu-70.1-h27087fc_0 
  idna               conda-forge/noarch::idna-3.4-pyhd8ed1ab_0 
  jack               conda-forge/linux-64::jack-1.9.21-h583fa2b_2 
  jasper             conda-forge/linux-64::jasper-2.0.33-ha77e612_0 
  jpeg               conda-forge/linux-64::jpeg-9e-h166bdaf_2 
  keyutils           conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 
  krb5               conda-forge/linux-64::krb5-1.20.1-h81ceb04_0 
  lame               conda-forge/linux-64::lame-3.100-h166bdaf_1003 
  lcms2              conda-forge/linux-64::lcms2-2.14-hfd0df8a_1 
  ld_impl_linux-64   conda-forge/linux-64::ld_impl_linux-64-2.39-hcc3a1bd_1 
  lerc               conda-forge/linux-64::lerc-4.0.0-h27087fc_0 
  libblas            conda-forge/linux-64::libblas-3.9.0-16_linux64_mkl 
  libcap             conda-forge/linux-64::libcap-2.66-ha37c62d_0 
  libcblas           conda-forge/linux-64::libcblas-3.9.0-16_linux64_mkl 
  libclang           conda-forge/linux-64::libclang-15.0.6-default_h2e3cab8_0 
  libclang13         conda-forge/linux-64::libclang13-15.0.6-default_h3a83d3e_0 
  libcublas          nvidia/linux-64::libcublas-11.9.2.110-h5e84587_0 
  libcublas-dev      nvidia/linux-64::libcublas-dev-11.9.2.110-h5c901ab_0 
  libcufft           nvidia/linux-64::libcufft-10.7.1.112-hf425ae0_0 
  libcufft-dev       nvidia/linux-64::libcufft-dev-10.7.1.112-ha5ce4c0_0 
  libcufile          nvidia/linux-64::libcufile-1.5.0.59-0 
  libcufile-dev      nvidia/linux-64::libcufile-dev-1.5.0.59-0 
  libcups            conda-forge/linux-64::libcups-2.3.3-h36d4200_3 
  libcurand          nvidia/linux-64::libcurand-10.3.1.50-0 
  libcurand-dev      nvidia/linux-64::libcurand-dev-10.3.1.50-0 
  libcurl            conda-forge/linux-64::libcurl-7.87.0-hdc1c0ab_0 
  libcusolver        nvidia/linux-64::libcusolver-11.3.4.124-h33c3c4e_0 
  libcusparse        nvidia/linux-64::libcusparse-11.7.2.124-h7538f96_0 
  libcusparse-dev    nvidia/linux-64::libcusparse-dev-11.7.2.124-hbbe9722_0 
  libdb              conda-forge/linux-64::libdb-6.2.32-h9c3ff4c_0 
  libdeflate         conda-forge/linux-64::libdeflate-1.14-h166bdaf_0 
  libdrm             conda-forge/linux-64::libdrm-2.4.114-h166bdaf_0 
  libedit            conda-forge/linux-64::libedit-3.1.20191231-he28a2e2_2 
  libev              conda-forge/linux-64::libev-4.33-h516909a_1 
  libevent           conda-forge/linux-64::libevent-2.1.10-h28343ad_4 
  libffi             conda-forge/linux-64::libffi-3.4.2-h7f98852_5 
  libflac            conda-forge/linux-64::libflac-1.4.2-h27087fc_0 
  libgcc-ng          conda-forge/linux-64::libgcc-ng-12.2.0-h65d4601_19 
  libgcrypt          conda-forge/linux-64::libgcrypt-1.10.1-h166bdaf_0 
  libgfortran-ng     conda-forge/linux-64::libgfortran-ng-12.2.0-h69a702a_19 
  libgfortran5       conda-forge/linux-64::libgfortran5-12.2.0-h337968e_19 
  libglib            conda-forge/linux-64::libglib-2.74.1-h606061b_1 
  libglu             conda-forge/linux-64::libglu-9.0.0-he1b5a44_1001 
  libgpg-error       conda-forge/linux-64::libgpg-error-1.45-hc0c96e0_0 
  libhwloc           conda-forge/linux-64::libhwloc-2.8.0-h32351e8_1 
  libiconv           conda-forge/linux-64::libiconv-1.17-h166bdaf_0 
  libidn2            conda-forge/linux-64::libidn2-2.3.4-h166bdaf_0 
  liblapack          conda-forge/linux-64::liblapack-3.9.0-16_linux64_mkl 
  liblapacke         conda-forge/linux-64::liblapacke-3.9.0-16_linux64_mkl 
  libllvm15          conda-forge/linux-64::libllvm15-15.0.6-h63197d8_0 
  libnghttp2         conda-forge/linux-64::libnghttp2-1.47.0-hff17c54_1 
  libnpp             nvidia/linux-64::libnpp-11.6.3.124-hd2722f0_0 
  libnpp-dev         nvidia/linux-64::libnpp-dev-11.6.3.124-h3c42840_0 
  libnsl             conda-forge/linux-64::libnsl-2.0.0-h7f98852_0 
  libnvjpeg          nvidia/linux-64::libnvjpeg-11.6.2.124-hd473ad6_0 
  libnvjpeg-dev      nvidia/linux-64::libnvjpeg-dev-11.6.2.124-hb5906b9_0 
  libogg             conda-forge/linux-64::libogg-1.3.4-h7f98852_1 
  libopencv          conda-forge/linux-64::libopencv-4.6.0-py310h5bd1119_9 
  libopus            conda-forge/linux-64::libopus-1.3.1-h7f98852_1 
  libpciaccess       conda-forge/linux-64::libpciaccess-0.17-h166bdaf_0 
  libpng             conda-forge/linux-64::libpng-1.6.39-h753d276_0 
  libpq              conda-forge/linux-64::libpq-15.1-hb675445_2 
  libprotobuf        conda-forge/linux-64::libprotobuf-3.21.12-h3eb15da_0 
  libsndfile         conda-forge/linux-64::libsndfile-1.1.0-hcb278e6_1 
  libsqlite          conda-forge/linux-64::libsqlite-3.40.0-h753d276_0 
  libssh2            conda-forge/linux-64::libssh2-1.10.0-hf14f497_3 
  libstdcxx-ng       conda-forge/linux-64::libstdcxx-ng-12.2.0-h46fd767_19 
  libsystemd0        conda-forge/linux-64::libsystemd0-252-h2a991cd_0 
  libtasn1           conda-forge/linux-64::libtasn1-4.19.0-h166bdaf_0 
  libtiff            conda-forge/linux-64::libtiff-4.5.0-h82bc61c_0 
  libtool            conda-forge/linux-64::libtool-2.4.6-h9c3ff4c_1008 
  libudev1           conda-forge/linux-64::libudev1-252-h166bdaf_0 
  libunistring       conda-forge/linux-64::libunistring-0.9.10-h7f98852_0 
  libuuid            conda-forge/linux-64::libuuid-2.32.1-h7f98852_1000 
  libva              conda-forge/linux-64::libva-2.16.0-h166bdaf_0 
  libvorbis          conda-forge/linux-64::libvorbis-1.3.7-h9c3ff4c_0 
  libvpx             conda-forge/linux-64::libvpx-1.11.0-h9c3ff4c_3 
  libwebp-base       conda-forge/linux-64::libwebp-base-1.2.4-h166bdaf_0 
  libxcb             conda-forge/linux-64::libxcb-1.13-h7f98852_1004 
  libxkbcommon       conda-forge/linux-64::libxkbcommon-1.0.3-he3ba5ed_0 
  libxml2            conda-forge/linux-64::libxml2-2.10.3-h7463322_0 
  libzlib            conda-forge/linux-64::libzlib-1.2.13-h166bdaf_4 
  llvm-openmp        conda-forge/linux-64::llvm-openmp-15.0.6-he0ac6c6_0 
  lz4-c              conda-forge/linux-64::lz4-c-1.9.3-h9c3ff4c_1 
  mkl                conda-forge/linux-64::mkl-2022.1.0-h84fe81f_915 
  mkl-devel          conda-forge/linux-64::mkl-devel-2022.1.0-ha770c72_916 
  mkl-include        conda-forge/linux-64::mkl-include-2022.1.0-h84fe81f_915 
  mpg123             conda-forge/linux-64::mpg123-1.31.1-h27087fc_0 
  mysql-common       conda-forge/linux-64::mysql-common-8.0.31-h26416b9_0 
  mysql-libs         conda-forge/linux-64::mysql-libs-8.0.31-hbc51c84_0 
  ncurses            conda-forge/linux-64::ncurses-6.3-h27087fc_1 
  nettle             conda-forge/linux-64::nettle-3.8.1-hc379101_1 
  nsight-compute     nvidia/linux-64::nsight-compute-2022.4.0.15-0 
  nspr               conda-forge/linux-64::nspr-4.35-h27087fc_0 
  nss                conda-forge/linux-64::nss-3.82-he02c5a1_0 
  numpy              conda-forge/linux-64::numpy-1.24.0-py310h08bbf29_0 
  opencv             conda-forge/linux-64::opencv-4.6.0-py310hff52083_9 
  openh264           conda-forge/linux-64::openh264-2.3.1-h27087fc_1 
  openjpeg           conda-forge/linux-64::openjpeg-2.5.0-hfec8fc6_2 
  openssl            conda-forge/linux-64::openssl-3.0.7-h0b41bf4_1 
  p11-kit            conda-forge/linux-64::p11-kit-0.24.1-hc5aa10d_0 
  pcre2              conda-forge/linux-64::pcre2-10.40-hc3806b6_0 
  pillow             conda-forge/linux-64::pillow-9.2.0-py310h023d228_4 
  pip                conda-forge/noarch::pip-22.3.1-pyhd8ed1ab_0 
  pixman             conda-forge/linux-64::pixman-0.40.0-h36c2ea0_0 
  pthread-stubs      conda-forge/linux-64::pthread-stubs-0.4-h36c2ea0_1001 
  pulseaudio         conda-forge/linux-64::pulseaudio-16.1-h126f2b6_0 
  py-opencv          conda-forge/linux-64::py-opencv-4.6.0-py310hfdc917e_9 
  pycparser          conda-forge/noarch::pycparser-2.21-pyhd8ed1ab_0 
  pyopenssl          conda-forge/noarch::pyopenssl-22.1.0-pyhd8ed1ab_0 
  pysocks            conda-forge/linux-64::pysocks-1.7.1-py310hff52083_5 
  python             conda-forge/linux-64::python-3.10.8-h4a9ceb5_0_cpython 
  python_abi         conda-forge/linux-64::python_abi-3.10-3_cp310 
  pytorch            pytorch/linux-64::pytorch-1.13.1-py3.10_cuda11.6_cudnn8.3.2_0 
  pytorch-cuda       pytorch/noarch::pytorch-cuda-11.6-h867d48c_1 
  pytorch-mutex      pytorch/noarch::pytorch-mutex-1.0-cuda 
  qt-main            conda-forge/linux-64::qt-main-5.15.6-hf6cd601_5 
  readline           conda-forge/linux-64::readline-8.1.2-h0f457ee_0 
  requests           conda-forge/noarch::requests-2.28.1-pyhd8ed1ab_1 
  setuptools         conda-forge/noarch::setuptools-65.6.3-pyhd8ed1ab_0 
  svt-av1            conda-forge/linux-64::svt-av1-1.4.1-hcb278e6_0 
  tbb                conda-forge/linux-64::tbb-2021.7.0-h924138e_1 
  tk                 conda-forge/linux-64::tk-8.6.12-h27826a3_0 
  torchvision        pytorch/linux-64::torchvision-0.14.1-py310_cu116 
  typing_extensions  conda-forge/noarch::typing_extensions-4.4.0-pyha770c72_0 
  tzdata             conda-forge/noarch::tzdata-2022g-h191b570_0 
  urllib3            conda-forge/noarch::urllib3-1.26.13-pyhd8ed1ab_0 
  wheel              conda-forge/noarch::wheel-0.38.4-pyhd8ed1ab_0 
  x264               conda-forge/linux-64::x264-1!164.3095-h166bdaf_2 
  x265               conda-forge/linux-64::x265-3.5-h924138e_3 
  xcb-util           conda-forge/linux-64::xcb-util-0.4.0-h166bdaf_0 
  xcb-util-image     conda-forge/linux-64::xcb-util-image-0.4.0-h166bdaf_0 
  xcb-util-keysyms   conda-forge/linux-64::xcb-util-keysyms-0.4.0-h166bdaf_0 
  xcb-util-renderut~ conda-forge/linux-64::xcb-util-renderutil-0.3.9-h166bdaf_0 
  xcb-util-wm        conda-forge/linux-64::xcb-util-wm-0.4.1-h166bdaf_0 
  xorg-fixesproto    conda-forge/linux-64::xorg-fixesproto-5.0-h7f98852_1002 
  xorg-inputproto    conda-forge/linux-64::xorg-inputproto-2.3.2-h7f98852_1002 
  xorg-kbproto       conda-forge/linux-64::xorg-kbproto-1.0.7-h7f98852_1002 
  xorg-libice        conda-forge/linux-64::xorg-libice-1.0.10-h7f98852_0 
  xorg-libsm         conda-forge/linux-64::xorg-libsm-1.2.3-hd9c2040_1000 
  xorg-libx11        conda-forge/linux-64::xorg-libx11-1.7.2-h7f98852_0 
  xorg-libxau        conda-forge/linux-64::xorg-libxau-1.0.9-h7f98852_0 
  xorg-libxdmcp      conda-forge/linux-64::xorg-libxdmcp-1.1.3-h7f98852_0 
  xorg-libxext       conda-forge/linux-64::xorg-libxext-1.3.4-h7f98852_1 
  xorg-libxfixes     conda-forge/linux-64::xorg-libxfixes-5.0.3-h7f98852_1004 
  xorg-libxi         conda-forge/linux-64::xorg-libxi-1.7.10-h7f98852_0 
  xorg-libxrender    conda-forge/linux-64::xorg-libxrender-0.9.10-h7f98852_1003 
  xorg-renderproto   conda-forge/linux-64::xorg-renderproto-0.11.1-h7f98852_1002 
  xorg-xextproto     conda-forge/linux-64::xorg-xextproto-7.3.0-h7f98852_1002 
  xorg-xproto        conda-forge/linux-64::xorg-xproto-7.0.31-h7f98852_1007 
  xz                 conda-forge/linux-64::xz-5.2.6-h166bdaf_0 
  zlib               conda-forge/linux-64::zlib-1.2.13-h166bdaf_4 
  zstd               conda-forge/linux-64::zstd-1.5.2-h6239696_4 



DryRunExit: Dry run. Exiting.
$ conda create -n py3.7-cu11.6 python=3.7 pytorch torchvision pytorch-cuda=11.6 opencv -c pytorch -c nvidia -c conda-forge --dry-run
Log
The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    ca-certificates-2022.12.7  |       ha878542_0         143 KB  conda-forge
    certifi-2022.12.7          |     pyhd8ed1ab_0         147 KB  conda-forge
    cffi-1.15.1                |   py37h43b0acd_1         227 KB  conda-forge
    cryptography-38.0.2        |   py37h5994e8b_1         1.5 MB  conda-forge
    cuda-11.6.1                |                0           1 KB  nvidia
    cuda-cccl-11.6.55          |       hf6102b2_0         1.2 MB  nvidia
    cuda-command-line-tools-11.6.2|                0           1 KB  nvidia
    cuda-compiler-11.6.2       |                0           1 KB  nvidia
    cuda-cudart-11.6.55        |       he381448_0         194 KB  nvidia
    cuda-cudart-dev-11.6.55    |       h42ad0f4_0         1.0 MB  nvidia
    cuda-cuobjdump-11.6.124    |       h2eeebcb_0         134 KB  nvidia
    cuda-cupti-11.6.124        |       h86345e5_0        22.1 MB  nvidia
    cuda-cuxxfilt-11.6.124     |       hecbf4f6_0         283 KB  nvidia
    cuda-driver-dev-11.6.55    |                0          16 KB  nvidia
    cuda-gdb-12.0.90           |                0         5.3 MB  nvidia
    cuda-libraries-11.6.1      |                0           1 KB  nvidia
    cuda-libraries-dev-11.6.1  |                0           2 KB  nvidia
    cuda-memcheck-11.8.86      |                0         168 KB  nvidia
    cuda-nsight-12.0.78        |                0       113.6 MB  nvidia
    cuda-nsight-compute-12.0.0 |                0           1 KB  nvidia
    cuda-nvcc-11.6.124         |       hbba6d2d_0        42.2 MB  nvidia
    cuda-nvdisasm-12.0.76      |                0        47.9 MB  nvidia
    cuda-nvml-dev-11.6.55      |       haa9ef22_0          65 KB  nvidia
    cuda-nvprof-12.0.90        |                0         4.3 MB  nvidia
    cuda-nvprune-11.6.124      |       he22ec0a_0          65 KB  nvidia
    cuda-nvrtc-11.6.124        |       h020bade_0        17.1 MB  nvidia
    cuda-nvrtc-dev-11.6.124    |       h249d397_0        16.8 MB  nvidia
    cuda-nvtx-11.6.124         |       h0630a44_0          58 KB  nvidia
    cuda-nvvp-12.0.90          |                0       114.3 MB  nvidia
    cuda-runtime-11.6.1        |                0           1 KB  nvidia
    cuda-samples-11.6.101      |       h8efea70_0           5 KB  nvidia
    cuda-sanitizer-api-12.0.90 |                0        16.6 MB  nvidia
    cuda-toolkit-11.6.1        |                0           1 KB  nvidia
    cuda-tools-11.6.1          |                0           1 KB  nvidia
    cuda-visual-tools-11.6.1   |                0           1 KB  nvidia
    dbus-1.13.6                |       h5008d03_3         604 KB  conda-forge
    ffmpeg-5.1.2               | gpl_h8dda1f0_105         9.2 MB  conda-forge
    fftw-3.3.10                |nompi_hf0379b8_106         2.1 MB  conda-forge
    gds-tools-1.5.0.59         |                0        40.9 MB  nvidia
    graphite2-1.3.13           |    h58526e2_1001         102 KB  conda-forge
    gst-plugins-base-1.21.3    |       h4243ec0_1         2.6 MB  conda-forge
    gstreamer-1.21.3           |       h25f0c4b_1         1.9 MB  conda-forge
    gstreamer-orc-0.4.33       |       h166bdaf_0         299 KB  conda-forge
    hdf5-1.12.2                |nompi_h4df4325_101         3.2 MB  conda-forge
    jack-1.9.21                |       h583fa2b_2         450 KB  conda-forge
    krb5-1.20.1                |       h81ceb04_0         1.3 MB  conda-forge
    libaec-1.0.6               |       h9c3ff4c_0          45 KB  conda-forge
    libclang-15.0.6            |default_h2e3cab8_0         129 KB  conda-forge
    libclang13-15.0.6          |default_h3a83d3e_0         9.0 MB  conda-forge
    libcublas-11.9.2.110       |       h5e84587_0       300.8 MB  nvidia
    libcublas-dev-11.9.2.110   |       h5c901ab_0       310.9 MB  nvidia
    libcufft-10.7.1.112        |       hf425ae0_0        93.6 MB  nvidia
    libcufft-dev-10.7.1.112    |       ha5ce4c0_0       197.2 MB  nvidia
    libcufile-1.5.0.59         |                0         754 KB  nvidia
    libcufile-dev-1.5.0.59     |                0          13 KB  nvidia
    libcups-2.3.3              |       h36d4200_3         4.3 MB  conda-forge
    libcurand-10.3.1.50        |                0        51.7 MB  nvidia
    libcurand-dev-10.3.1.50    |                0         449 KB  nvidia
    libcurl-7.87.0             |       hdc1c0ab_0         341 KB  conda-forge
    libcusolver-11.3.4.124     |       h33c3c4e_0        87.0 MB  nvidia
    libcusparse-11.7.2.124     |       h7538f96_0       160.9 MB  nvidia
    libcusparse-dev-11.7.2.124 |       hbbe9722_0       328.9 MB  nvidia
    libdb-6.2.32               |       h9c3ff4c_0        23.3 MB  conda-forge
    libgcrypt-1.10.1           |       h166bdaf_0         703 KB  conda-forge
    libgpg-error-1.45          |       hc0c96e0_0         286 KB  conda-forge
    libhwloc-2.8.0             |       h32351e8_1         3.0 MB  conda-forge
    libllvm15-15.0.6           |       h63197d8_0        30.5 MB  conda-forge
    libnpp-11.6.3.124          |       hd2722f0_0       118.4 MB  nvidia
    libnpp-dev-11.6.3.124      |       h3c42840_0       115.6 MB  nvidia
    libnvjpeg-11.6.2.124       |       hd473ad6_0         2.3 MB  nvidia
    libnvjpeg-dev-11.6.2.124   |       hb5906b9_0         2.0 MB  nvidia
    libopencv-4.6.0            |   py37h7b66c90_5        35.3 MB  conda-forge
    libpq-15.1                 |       hb675445_2         2.4 MB  conda-forge
    libprotobuf-3.21.12        |       h3eb15da_0         2.1 MB  conda-forge
    libsndfile-1.1.0           |       hcb278e6_1         341 KB  conda-forge
    libsystemd0-252            |       h2a991cd_0         384 KB  conda-forge
    libtiff-4.4.0              |       h82bc61c_5         473 KB  conda-forge
    libunistring-0.9.10        |       h7f98852_0         1.4 MB  conda-forge
    mpg123-1.31.1              |       h27087fc_0         522 KB  conda-forge
    mysql-common-8.0.31        |       h26416b9_0         1.9 MB  conda-forge
    mysql-libs-8.0.31          |       hbc51c84_0         1.9 MB  conda-forge
    nsight-compute-2022.4.0.15 |                0       764.0 MB  nvidia
    nspr-4.35                  |       h27087fc_0         222 KB  conda-forge
    nss-3.82                   |       he02c5a1_0         1.9 MB  conda-forge
    opencv-4.6.0               |   py37h89c1867_5          24 KB  conda-forge
    openssl-3.0.7              |       h0b41bf4_1         2.5 MB  conda-forge
    pulseaudio-16.1            |       h126f2b6_0         1.7 MB  conda-forge
    py-opencv-4.6.0            |   py37hf05f0b3_5         1.1 MB  conda-forge
    python_abi-3.7             |          3_cp37m           6 KB  conda-forge
    pytorch-1.13.1             |py3.7_cuda11.6_cudnn8.3.2_0        1.27 GB  pytorch
    pytorch-cuda-11.6          |       h867d48c_1           3 KB  pytorch
    pytorch-mutex-1.0          |             cuda           3 KB  pytorch
    qt-main-5.15.6             |       hf6cd601_5        52.3 MB  conda-forge
    setuptools-65.6.3          |     pyhd8ed1ab_0         619 KB  conda-forge
    svt-av1-1.4.1              |       hcb278e6_0         2.4 MB  conda-forge
    tbb-2021.7.0               |       h924138e_1         1.5 MB  conda-forge
    torchvision-0.14.1         |       py37_cu116        29.5 MB  pytorch
    xcb-util-0.4.0             |       h166bdaf_0          20 KB  conda-forge
    xcb-util-keysyms-0.4.0     |       h166bdaf_0          12 KB  conda-forge
    xcb-util-wm-0.4.1          |       h166bdaf_0          55 KB  conda-forge
    xorg-fixesproto-5.0        |    h7f98852_1002           9 KB  conda-forge
    xorg-inputproto-2.3.2      |    h7f98852_1002          19 KB  conda-forge
    xorg-kbproto-1.0.7         |    h7f98852_1002          27 KB  conda-forge
    xorg-libice-1.0.10         |       h7f98852_0          58 KB  conda-forge
    xorg-renderproto-0.11.1    |    h7f98852_1002           9 KB  conda-forge
    xorg-xextproto-7.3.0       |    h7f98852_1002          28 KB  conda-forge
    xorg-xproto-7.0.31         |    h7f98852_1007          73 KB  conda-forge
    ------------------------------------------------------------
                                           Total:        4.41 GB

The following NEW packages will be INSTALLED:

  _libgcc_mutex      conda-forge/linux-64::_libgcc_mutex-0.1-conda_forge 
  _openmp_mutex      conda-forge/linux-64::_openmp_mutex-4.5-2_kmp_llvm 
  alsa-lib           conda-forge/linux-64::alsa-lib-1.2.8-h166bdaf_0 
  aom                conda-forge/linux-64::aom-3.5.0-h27087fc_0 
  attr               conda-forge/linux-64::attr-2.5.1-h166bdaf_1 
  blas               conda-forge/linux-64::blas-2.116-mkl 
  blas-devel         conda-forge/linux-64::blas-devel-3.9.0-16_linux64_mkl 
  brotlipy           conda-forge/linux-64::brotlipy-0.7.0-py37h540881e_1004 
  bzip2              conda-forge/linux-64::bzip2-1.0.8-h7f98852_4 
  c-ares             conda-forge/linux-64::c-ares-1.18.1-h7f98852_0 
  ca-certificates    conda-forge/linux-64::ca-certificates-2022.12.7-ha878542_0 
  cairo              conda-forge/linux-64::cairo-1.16.0-ha61ee94_1014 
  certifi            conda-forge/noarch::certifi-2022.12.7-pyhd8ed1ab_0 
  cffi               conda-forge/linux-64::cffi-1.15.1-py37h43b0acd_1 
  charset-normalizer conda-forge/noarch::charset-normalizer-2.1.1-pyhd8ed1ab_0 
  cryptography       conda-forge/linux-64::cryptography-38.0.2-py37h5994e8b_1 
  cuda               nvidia/linux-64::cuda-11.6.1-0 
  cuda-cccl          nvidia/linux-64::cuda-cccl-11.6.55-hf6102b2_0 
  cuda-command-line~ nvidia/linux-64::cuda-command-line-tools-11.6.2-0 
  cuda-compiler      nvidia/linux-64::cuda-compiler-11.6.2-0 
  cuda-cudart        nvidia/linux-64::cuda-cudart-11.6.55-he381448_0 
  cuda-cudart-dev    nvidia/linux-64::cuda-cudart-dev-11.6.55-h42ad0f4_0 
  cuda-cuobjdump     nvidia/linux-64::cuda-cuobjdump-11.6.124-h2eeebcb_0 
  cuda-cupti         nvidia/linux-64::cuda-cupti-11.6.124-h86345e5_0 
  cuda-cuxxfilt      nvidia/linux-64::cuda-cuxxfilt-11.6.124-hecbf4f6_0 
  cuda-driver-dev    nvidia/linux-64::cuda-driver-dev-11.6.55-0 
  cuda-gdb           nvidia/linux-64::cuda-gdb-12.0.90-0 
  cuda-libraries     nvidia/linux-64::cuda-libraries-11.6.1-0 
  cuda-libraries-dev nvidia/linux-64::cuda-libraries-dev-11.6.1-0 
  cuda-memcheck      nvidia/linux-64::cuda-memcheck-11.8.86-0 
  cuda-nsight        nvidia/linux-64::cuda-nsight-12.0.78-0 
  cuda-nsight-compu~ nvidia/linux-64::cuda-nsight-compute-12.0.0-0 
  cuda-nvcc          nvidia/linux-64::cuda-nvcc-11.6.124-hbba6d2d_0 
  cuda-nvdisasm      nvidia/linux-64::cuda-nvdisasm-12.0.76-0 
  cuda-nvml-dev      nvidia/linux-64::cuda-nvml-dev-11.6.55-haa9ef22_0 
  cuda-nvprof        nvidia/linux-64::cuda-nvprof-12.0.90-0 
  cuda-nvprune       nvidia/linux-64::cuda-nvprune-11.6.124-he22ec0a_0 
  cuda-nvrtc         nvidia/linux-64::cuda-nvrtc-11.6.124-h020bade_0 
  cuda-nvrtc-dev     nvidia/linux-64::cuda-nvrtc-dev-11.6.124-h249d397_0 
  cuda-nvtx          nvidia/linux-64::cuda-nvtx-11.6.124-h0630a44_0 
  cuda-nvvp          nvidia/linux-64::cuda-nvvp-12.0.90-0 
  cuda-runtime       nvidia/linux-64::cuda-runtime-11.6.1-0 
  cuda-samples       nvidia/linux-64::cuda-samples-11.6.101-h8efea70_0 
  cuda-sanitizer-api nvidia/linux-64::cuda-sanitizer-api-12.0.90-0 
  cuda-toolkit       nvidia/linux-64::cuda-toolkit-11.6.1-0 
  cuda-tools         nvidia/linux-64::cuda-tools-11.6.1-0 
  cuda-visual-tools  nvidia/linux-64::cuda-visual-tools-11.6.1-0 
  dbus               conda-forge/linux-64::dbus-1.13.6-h5008d03_3 
  expat              conda-forge/linux-64::expat-2.5.0-h27087fc_0 
  ffmpeg             conda-forge/linux-64::ffmpeg-5.1.2-gpl_h8dda1f0_105 
  fftw               conda-forge/linux-64::fftw-3.3.10-nompi_hf0379b8_106 
  font-ttf-dejavu-s~ conda-forge/noarch::font-ttf-dejavu-sans-mono-2.37-hab24e00_0 
  font-ttf-inconsol~ conda-forge/noarch::font-ttf-inconsolata-3.000-h77eed37_0 
  font-ttf-source-c~ conda-forge/noarch::font-ttf-source-code-pro-2.038-h77eed37_0 
  font-ttf-ubuntu    conda-forge/noarch::font-ttf-ubuntu-0.83-hab24e00_0 
  fontconfig         conda-forge/linux-64::fontconfig-2.14.1-hc2a2eb6_0 
  fonts-conda-ecosy~ conda-forge/noarch::fonts-conda-ecosystem-1-0 
  fonts-conda-forge  conda-forge/noarch::fonts-conda-forge-1-0 
  freeglut           conda-forge/linux-64::freeglut-3.2.2-h9c3ff4c_1 
  freetype           conda-forge/linux-64::freetype-2.12.1-hca18f0e_1 
  gds-tools          nvidia/linux-64::gds-tools-1.5.0.59-0 
  gettext            conda-forge/linux-64::gettext-0.21.1-h27087fc_0 
  glib               conda-forge/linux-64::glib-2.74.1-h6239696_1 
  glib-tools         conda-forge/linux-64::glib-tools-2.74.1-h6239696_1 
  gmp                conda-forge/linux-64::gmp-6.2.1-h58526e2_0 
  gnutls             conda-forge/linux-64::gnutls-3.7.8-hf3e180e_0 
  graphite2          conda-forge/linux-64::graphite2-1.3.13-h58526e2_1001 
  gst-plugins-base   conda-forge/linux-64::gst-plugins-base-1.21.3-h4243ec0_1 
  gstreamer          conda-forge/linux-64::gstreamer-1.21.3-h25f0c4b_1 
  gstreamer-orc      conda-forge/linux-64::gstreamer-orc-0.4.33-h166bdaf_0 
  harfbuzz           conda-forge/linux-64::harfbuzz-5.3.0-h418a68e_0 
  hdf5               conda-forge/linux-64::hdf5-1.12.2-nompi_h4df4325_101 
  icu                conda-forge/linux-64::icu-70.1-h27087fc_0 
  idna               conda-forge/noarch::idna-3.4-pyhd8ed1ab_0 
  jack               conda-forge/linux-64::jack-1.9.21-h583fa2b_2 
  jasper             conda-forge/linux-64::jasper-2.0.33-ha77e612_0 
  jpeg               conda-forge/linux-64::jpeg-9e-h166bdaf_2 
  keyutils           conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 
  krb5               conda-forge/linux-64::krb5-1.20.1-h81ceb04_0 
  lame               conda-forge/linux-64::lame-3.100-h166bdaf_1003 
  lcms2              conda-forge/linux-64::lcms2-2.14-h6ed2654_0 
  ld_impl_linux-64   conda-forge/linux-64::ld_impl_linux-64-2.39-hcc3a1bd_1 
  lerc               conda-forge/linux-64::lerc-4.0.0-h27087fc_0 
  libaec             conda-forge/linux-64::libaec-1.0.6-h9c3ff4c_0 
  libblas            conda-forge/linux-64::libblas-3.9.0-16_linux64_mkl 
  libcap             conda-forge/linux-64::libcap-2.66-ha37c62d_0 
  libcblas           conda-forge/linux-64::libcblas-3.9.0-16_linux64_mkl 
  libclang           conda-forge/linux-64::libclang-15.0.6-default_h2e3cab8_0 
  libclang13         conda-forge/linux-64::libclang13-15.0.6-default_h3a83d3e_0 
  libcublas          nvidia/linux-64::libcublas-11.9.2.110-h5e84587_0 
  libcublas-dev      nvidia/linux-64::libcublas-dev-11.9.2.110-h5c901ab_0 
  libcufft           nvidia/linux-64::libcufft-10.7.1.112-hf425ae0_0 
  libcufft-dev       nvidia/linux-64::libcufft-dev-10.7.1.112-ha5ce4c0_0 
  libcufile          nvidia/linux-64::libcufile-1.5.0.59-0 
  libcufile-dev      nvidia/linux-64::libcufile-dev-1.5.0.59-0 
  libcups            conda-forge/linux-64::libcups-2.3.3-h36d4200_3 
  libcurand          nvidia/linux-64::libcurand-10.3.1.50-0 
  libcurand-dev      nvidia/linux-64::libcurand-dev-10.3.1.50-0 
  libcurl            conda-forge/linux-64::libcurl-7.87.0-hdc1c0ab_0 
  libcusolver        nvidia/linux-64::libcusolver-11.3.4.124-h33c3c4e_0 
  libcusparse        nvidia/linux-64::libcusparse-11.7.2.124-h7538f96_0 
  libcusparse-dev    nvidia/linux-64::libcusparse-dev-11.7.2.124-hbbe9722_0 
  libdb              conda-forge/linux-64::libdb-6.2.32-h9c3ff4c_0 
  libdeflate         conda-forge/linux-64::libdeflate-1.14-h166bdaf_0 
  libdrm             conda-forge/linux-64::libdrm-2.4.114-h166bdaf_0 
  libedit            conda-forge/linux-64::libedit-3.1.20191231-he28a2e2_2 
  libev              conda-forge/linux-64::libev-4.33-h516909a_1 
  libevent           conda-forge/linux-64::libevent-2.1.10-h28343ad_4 
  libffi             conda-forge/linux-64::libffi-3.4.2-h7f98852_5 
  libflac            conda-forge/linux-64::libflac-1.4.2-h27087fc_0 
  libgcc-ng          conda-forge/linux-64::libgcc-ng-12.2.0-h65d4601_19 
  libgcrypt          conda-forge/linux-64::libgcrypt-1.10.1-h166bdaf_0 
  libgfortran-ng     conda-forge/linux-64::libgfortran-ng-12.2.0-h69a702a_19 
  libgfortran5       conda-forge/linux-64::libgfortran5-12.2.0-h337968e_19 
  libglib            conda-forge/linux-64::libglib-2.74.1-h606061b_1 
  libglu             conda-forge/linux-64::libglu-9.0.0-he1b5a44_1001 
  libgpg-error       conda-forge/linux-64::libgpg-error-1.45-hc0c96e0_0 
  libhwloc           conda-forge/linux-64::libhwloc-2.8.0-h32351e8_1 
  libiconv           conda-forge/linux-64::libiconv-1.17-h166bdaf_0 
  libidn2            conda-forge/linux-64::libidn2-2.3.4-h166bdaf_0 
  liblapack          conda-forge/linux-64::liblapack-3.9.0-16_linux64_mkl 
  liblapacke         conda-forge/linux-64::liblapacke-3.9.0-16_linux64_mkl 
  libllvm15          conda-forge/linux-64::libllvm15-15.0.6-h63197d8_0 
  libnghttp2         conda-forge/linux-64::libnghttp2-1.47.0-hff17c54_1 
  libnpp             nvidia/linux-64::libnpp-11.6.3.124-hd2722f0_0 
  libnpp-dev         nvidia/linux-64::libnpp-dev-11.6.3.124-h3c42840_0 
  libnsl             conda-forge/linux-64::libnsl-2.0.0-h7f98852_0 
  libnvjpeg          nvidia/linux-64::libnvjpeg-11.6.2.124-hd473ad6_0 
  libnvjpeg-dev      nvidia/linux-64::libnvjpeg-dev-11.6.2.124-hb5906b9_0 
  libogg             conda-forge/linux-64::libogg-1.3.4-h7f98852_1 
  libopencv          conda-forge/linux-64::libopencv-4.6.0-py37h7b66c90_5 
  libopus            conda-forge/linux-64::libopus-1.3.1-h7f98852_1 
  libpciaccess       conda-forge/linux-64::libpciaccess-0.17-h166bdaf_0 
  libpng             conda-forge/linux-64::libpng-1.6.39-h753d276_0 
  libpq              conda-forge/linux-64::libpq-15.1-hb675445_2 
  libprotobuf        conda-forge/linux-64::libprotobuf-3.21.12-h3eb15da_0 
  libsndfile         conda-forge/linux-64::libsndfile-1.1.0-hcb278e6_1 
  libsqlite          conda-forge/linux-64::libsqlite-3.40.0-h753d276_0 
  libssh2            conda-forge/linux-64::libssh2-1.10.0-hf14f497_3 
  libstdcxx-ng       conda-forge/linux-64::libstdcxx-ng-12.2.0-h46fd767_19 
  libsystemd0        conda-forge/linux-64::libsystemd0-252-h2a991cd_0 
  libtasn1           conda-forge/linux-64::libtasn1-4.19.0-h166bdaf_0 
  libtiff            conda-forge/linux-64::libtiff-4.4.0-h82bc61c_5 
  libtool            conda-forge/linux-64::libtool-2.4.6-h9c3ff4c_1008 
  libudev1           conda-forge/linux-64::libudev1-252-h166bdaf_0 
  libunistring       conda-forge/linux-64::libunistring-0.9.10-h7f98852_0 
  libuuid            conda-forge/linux-64::libuuid-2.32.1-h7f98852_1000 
  libva              conda-forge/linux-64::libva-2.16.0-h166bdaf_0 
  libvorbis          conda-forge/linux-64::libvorbis-1.3.7-h9c3ff4c_0 
  libvpx             conda-forge/linux-64::libvpx-1.11.0-h9c3ff4c_3 
  libwebp-base       conda-forge/linux-64::libwebp-base-1.2.4-h166bdaf_0 
  libxcb             conda-forge/linux-64::libxcb-1.13-h7f98852_1004 
  libxkbcommon       conda-forge/linux-64::libxkbcommon-1.0.3-he3ba5ed_0 
  libxml2            conda-forge/linux-64::libxml2-2.10.3-h7463322_0 
  libzlib            conda-forge/linux-64::libzlib-1.2.13-h166bdaf_4 
  llvm-openmp        conda-forge/linux-64::llvm-openmp-15.0.6-he0ac6c6_0 
  lz4-c              conda-forge/linux-64::lz4-c-1.9.3-h9c3ff4c_1 
  mkl                conda-forge/linux-64::mkl-2022.1.0-h84fe81f_915 
  mkl-devel          conda-forge/linux-64::mkl-devel-2022.1.0-ha770c72_916 
  mkl-include        conda-forge/linux-64::mkl-include-2022.1.0-h84fe81f_915 
  mpg123             conda-forge/linux-64::mpg123-1.31.1-h27087fc_0 
  mysql-common       conda-forge/linux-64::mysql-common-8.0.31-h26416b9_0 
  mysql-libs         conda-forge/linux-64::mysql-libs-8.0.31-hbc51c84_0 
  ncurses            conda-forge/linux-64::ncurses-6.3-h27087fc_1 
  nettle             conda-forge/linux-64::nettle-3.8.1-hc379101_1 
  nsight-compute     nvidia/linux-64::nsight-compute-2022.4.0.15-0 
  nspr               conda-forge/linux-64::nspr-4.35-h27087fc_0 
  nss                conda-forge/linux-64::nss-3.82-he02c5a1_0 
  numpy              conda-forge/linux-64::numpy-1.21.6-py37h976b520_0 
  opencv             conda-forge/linux-64::opencv-4.6.0-py37h89c1867_5 
  openh264           conda-forge/linux-64::openh264-2.3.1-h27087fc_1 
  openjpeg           conda-forge/linux-64::openjpeg-2.5.0-h7d73246_1 
  openssl            conda-forge/linux-64::openssl-3.0.7-h0b41bf4_1 
  p11-kit            conda-forge/linux-64::p11-kit-0.24.1-hc5aa10d_0 
  pcre2              conda-forge/linux-64::pcre2-10.40-hc3806b6_0 
  pillow             conda-forge/linux-64::pillow-9.2.0-py37h850a105_2 
  pip                conda-forge/noarch::pip-22.3.1-pyhd8ed1ab_0 
  pixman             conda-forge/linux-64::pixman-0.40.0-h36c2ea0_0 
  pthread-stubs      conda-forge/linux-64::pthread-stubs-0.4-h36c2ea0_1001 
  pulseaudio         conda-forge/linux-64::pulseaudio-16.1-h126f2b6_0 
  py-opencv          conda-forge/linux-64::py-opencv-4.6.0-py37hf05f0b3_5 
  pycparser          conda-forge/noarch::pycparser-2.21-pyhd8ed1ab_0 
  pyopenssl          conda-forge/noarch::pyopenssl-22.1.0-pyhd8ed1ab_0 
  pysocks            conda-forge/linux-64::pysocks-1.7.1-py37h89c1867_5 
  python             conda-forge/linux-64::python-3.7.12-hf930737_100_cpython 
  python_abi         conda-forge/linux-64::python_abi-3.7-3_cp37m 
  pytorch            pytorch/linux-64::pytorch-1.13.1-py3.7_cuda11.6_cudnn8.3.2_0 
  pytorch-cuda       pytorch/noarch::pytorch-cuda-11.6-h867d48c_1 
  pytorch-mutex      pytorch/noarch::pytorch-mutex-1.0-cuda 
  qt-main            conda-forge/linux-64::qt-main-5.15.6-hf6cd601_5 
  readline           conda-forge/linux-64::readline-8.1.2-h0f457ee_0 
  requests           conda-forge/noarch::requests-2.28.1-pyhd8ed1ab_1 
  setuptools         conda-forge/noarch::setuptools-65.6.3-pyhd8ed1ab_0 
  sqlite             conda-forge/linux-64::sqlite-3.40.0-h4ff8645_0 
  svt-av1            conda-forge/linux-64::svt-av1-1.4.1-hcb278e6_0 
  tbb                conda-forge/linux-64::tbb-2021.7.0-h924138e_1 
  tk                 conda-forge/linux-64::tk-8.6.12-h27826a3_0 
  torchvision        pytorch/linux-64::torchvision-0.14.1-py37_cu116 
  typing_extensions  conda-forge/noarch::typing_extensions-4.4.0-pyha770c72_0 
  urllib3            conda-forge/noarch::urllib3-1.26.13-pyhd8ed1ab_0 
  wheel              conda-forge/noarch::wheel-0.38.4-pyhd8ed1ab_0 
  x264               conda-forge/linux-64::x264-1!164.3095-h166bdaf_2 
  x265               conda-forge/linux-64::x265-3.5-h924138e_3 
  xcb-util           conda-forge/linux-64::xcb-util-0.4.0-h166bdaf_0 
  xcb-util-image     conda-forge/linux-64::xcb-util-image-0.4.0-h166bdaf_0 
  xcb-util-keysyms   conda-forge/linux-64::xcb-util-keysyms-0.4.0-h166bdaf_0 
  xcb-util-renderut~ conda-forge/linux-64::xcb-util-renderutil-0.3.9-h166bdaf_0 
  xcb-util-wm        conda-forge/linux-64::xcb-util-wm-0.4.1-h166bdaf_0 
  xorg-fixesproto    conda-forge/linux-64::xorg-fixesproto-5.0-h7f98852_1002 
  xorg-inputproto    conda-forge/linux-64::xorg-inputproto-2.3.2-h7f98852_1002 
  xorg-kbproto       conda-forge/linux-64::xorg-kbproto-1.0.7-h7f98852_1002 
  xorg-libice        conda-forge/linux-64::xorg-libice-1.0.10-h7f98852_0 
  xorg-libsm         conda-forge/linux-64::xorg-libsm-1.2.3-hd9c2040_1000 
  xorg-libx11        conda-forge/linux-64::xorg-libx11-1.7.2-h7f98852_0 
  xorg-libxau        conda-forge/linux-64::xorg-libxau-1.0.9-h7f98852_0 
  xorg-libxdmcp      conda-forge/linux-64::xorg-libxdmcp-1.1.3-h7f98852_0 
  xorg-libxext       conda-forge/linux-64::xorg-libxext-1.3.4-h7f98852_1 
  xorg-libxfixes     conda-forge/linux-64::xorg-libxfixes-5.0.3-h7f98852_1004 
  xorg-libxi         conda-forge/linux-64::xorg-libxi-1.7.10-h7f98852_0 
  xorg-libxrender    conda-forge/linux-64::xorg-libxrender-0.9.10-h7f98852_1003 
  xorg-renderproto   conda-forge/linux-64::xorg-renderproto-0.11.1-h7f98852_1002 
  xorg-xextproto     conda-forge/linux-64::xorg-xextproto-7.3.0-h7f98852_1002 
  xorg-xproto        conda-forge/linux-64::xorg-xproto-7.0.31-h7f98852_1007 
  xz                 conda-forge/linux-64::xz-5.2.6-h166bdaf_0 
  zlib               conda-forge/linux-64::zlib-1.2.13-h166bdaf_4 
  zstd               conda-forge/linux-64::zstd-1.5.2-h6239696_4 



DryRunExit: Dry run. Exiting.
$ conda create -n py-cpu pytorch torchvision cpuonly opencv -c pytorch -c conda-forge --dry-run
Log
The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    ca-certificates-2022.12.7  |       ha878542_0         143 KB  conda-forge
    certifi-2022.12.7          |     pyhd8ed1ab_0         147 KB  conda-forge
    cffi-1.15.1                |  py310h255011f_3         231 KB  conda-forge
    cpuonly-2.0                |                0           2 KB  pytorch
    cryptography-38.0.4        |  py310h600f1e7_0         1.3 MB  conda-forge
    dbus-1.13.6                |       h5008d03_3         604 KB  conda-forge
    ffmpeg-5.1.2               | gpl_h8dda1f0_105         9.2 MB  conda-forge
    fftw-3.3.10                |nompi_hf0379b8_106         2.1 MB  conda-forge
    graphite2-1.3.13           |    h58526e2_1001         102 KB  conda-forge
    gst-plugins-base-1.21.3    |       h4243ec0_1         2.6 MB  conda-forge
    gstreamer-1.21.3           |       h25f0c4b_1         1.9 MB  conda-forge
    gstreamer-orc-0.4.33       |       h166bdaf_0         299 KB  conda-forge
    harfbuzz-6.0.0             |       h8e241bc_0         1.2 MB  conda-forge
    hdf5-1.12.2                |nompi_h4df4325_101         3.2 MB  conda-forge
    jack-1.9.21                |       h583fa2b_2         450 KB  conda-forge
    krb5-1.20.1                |       h81ceb04_0         1.3 MB  conda-forge
    lcms2-2.14                 |       hfd0df8a_1         235 KB  conda-forge
    libaec-1.0.6               |       h9c3ff4c_0          45 KB  conda-forge
    libblas-3.9.0              |            6_mkl          11 KB  conda-forge
    libclang-15.0.6            |default_h2e3cab8_0         129 KB  conda-forge
    libclang13-15.0.6          |default_h3a83d3e_0         9.0 MB  conda-forge
    libcups-2.3.3              |       h36d4200_3         4.3 MB  conda-forge
    libcurl-7.87.0             |       hdc1c0ab_0         341 KB  conda-forge
    libdb-6.2.32               |       h9c3ff4c_0        23.3 MB  conda-forge
    libgcrypt-1.10.1           |       h166bdaf_0         703 KB  conda-forge
    libgpg-error-1.45          |       hc0c96e0_0         286 KB  conda-forge
    libllvm15-15.0.6           |       h63197d8_0        30.5 MB  conda-forge
    libopencv-4.6.0            |  py310h5bd1119_9        28.6 MB  conda-forge
    libpq-15.1                 |       hb675445_2         2.4 MB  conda-forge
    libprotobuf-3.21.12        |       h3eb15da_0         2.1 MB  conda-forge
    libsndfile-1.1.0           |       hcb278e6_1         341 KB  conda-forge
    libsystemd0-252            |       h2a991cd_0         384 KB  conda-forge
    libtiff-4.5.0              |       h82bc61c_0         398 KB  conda-forge
    libunistring-0.9.10        |       h7f98852_0         1.4 MB  conda-forge
    mpg123-1.31.1              |       h27087fc_0         522 KB  conda-forge
    mysql-common-8.0.31        |       h26416b9_0         1.9 MB  conda-forge
    mysql-libs-8.0.31          |       hbc51c84_0         1.9 MB  conda-forge
    nspr-4.35                  |       h27087fc_0         222 KB  conda-forge
    nss-3.82                   |       he02c5a1_0         1.9 MB  conda-forge
    numpy-1.24.0               |  py310h08bbf29_0         6.3 MB  conda-forge
    opencv-4.6.0               |  py310hff52083_9          24 KB  conda-forge
    openjpeg-2.5.0             |       hfec8fc6_2         344 KB  conda-forge
    openssl-3.0.7              |       h0b41bf4_1         2.5 MB  conda-forge
    pillow-9.2.0               |  py310h023d228_4        43.0 MB  conda-forge
    pulseaudio-16.1            |       h126f2b6_0         1.7 MB  conda-forge
    py-opencv-4.6.0            |  py310hfdc917e_9         1.1 MB  conda-forge
    python-3.10.8              |h4a9ceb5_0_cpython        22.1 MB  conda-forge
    pytorch-1.13.1             |     py3.10_cpu_0        81.6 MB  pytorch
    pytorch-mutex-1.0          |              cpu           3 KB  pytorch
    qt-main-5.15.6             |       hf6cd601_5        52.3 MB  conda-forge
    setuptools-65.6.3          |     pyhd8ed1ab_0         619 KB  conda-forge
    svt-av1-1.4.1              |       hcb278e6_0         2.4 MB  conda-forge
    torchvision-0.14.1         |        py310_cpu         6.4 MB  pytorch
    tzdata-2022g               |       h191b570_0         106 KB  conda-forge
    xcb-util-0.4.0             |       h166bdaf_0          20 KB  conda-forge
    xcb-util-keysyms-0.4.0     |       h166bdaf_0          12 KB  conda-forge
    xcb-util-wm-0.4.1          |       h166bdaf_0          55 KB  conda-forge
    xorg-fixesproto-5.0        |    h7f98852_1002           9 KB  conda-forge
    xorg-inputproto-2.3.2      |    h7f98852_1002          19 KB  conda-forge
    xorg-kbproto-1.0.7         |    h7f98852_1002          27 KB  conda-forge
    xorg-libice-1.0.10         |       h7f98852_0          58 KB  conda-forge
    xorg-renderproto-0.11.1    |    h7f98852_1002           9 KB  conda-forge
    xorg-xextproto-7.3.0       |    h7f98852_1002          28 KB  conda-forge
    xorg-xproto-7.0.31         |    h7f98852_1007          73 KB  conda-forge
    ------------------------------------------------------------
                                           Total:       356.2 MB

The following NEW packages will be INSTALLED:

  _libgcc_mutex      conda-forge/linux-64::_libgcc_mutex-0.1-conda_forge
  _openmp_mutex      conda-forge/linux-64::_openmp_mutex-4.5-2_kmp_llvm
  alsa-lib           conda-forge/linux-64::alsa-lib-1.2.8-h166bdaf_0
  aom                conda-forge/linux-64::aom-3.5.0-h27087fc_0
  attr               conda-forge/linux-64::attr-2.5.1-h166bdaf_1
  blas               conda-forge/linux-64::blas-2.106-mkl
  brotlipy           conda-forge/linux-64::brotlipy-0.7.0-py310h5764c6d_1005
  bzip2              conda-forge/linux-64::bzip2-1.0.8-h7f98852_4
  c-ares             conda-forge/linux-64::c-ares-1.18.1-h7f98852_0
  ca-certificates    conda-forge/linux-64::ca-certificates-2022.12.7-ha878542_0
  cairo              conda-forge/linux-64::cairo-1.16.0-ha61ee94_1014
  certifi            conda-forge/noarch::certifi-2022.12.7-pyhd8ed1ab_0
  cffi               conda-forge/linux-64::cffi-1.15.1-py310h255011f_3
  charset-normalizer conda-forge/noarch::charset-normalizer-2.1.1-pyhd8ed1ab_0
  cpuonly            pytorch/noarch::cpuonly-2.0-0
  cryptography       conda-forge/linux-64::cryptography-38.0.4-py310h600f1e7_0
  dbus               conda-forge/linux-64::dbus-1.13.6-h5008d03_3
  expat              conda-forge/linux-64::expat-2.5.0-h27087fc_0
  ffmpeg             conda-forge/linux-64::ffmpeg-5.1.2-gpl_h8dda1f0_105
  fftw               conda-forge/linux-64::fftw-3.3.10-nompi_hf0379b8_106
  font-ttf-dejavu-s~ conda-forge/noarch::font-ttf-dejavu-sans-mono-2.37-hab24e00_0
  font-ttf-inconsol~ conda-forge/noarch::font-ttf-inconsolata-3.000-h77eed37_0
  font-ttf-source-c~ conda-forge/noarch::font-ttf-source-code-pro-2.038-h77eed37_0
  font-ttf-ubuntu    conda-forge/noarch::font-ttf-ubuntu-0.83-hab24e00_0
  fontconfig         conda-forge/linux-64::fontconfig-2.14.1-hc2a2eb6_0
  fonts-conda-ecosy~ conda-forge/noarch::fonts-conda-ecosystem-1-0
  fonts-conda-forge  conda-forge/noarch::fonts-conda-forge-1-0
  freeglut           conda-forge/linux-64::freeglut-3.2.2-h9c3ff4c_1
  freetype           conda-forge/linux-64::freetype-2.12.1-hca18f0e_1
  gettext            conda-forge/linux-64::gettext-0.21.1-h27087fc_0
  glib               conda-forge/linux-64::glib-2.74.1-h6239696_1
  glib-tools         conda-forge/linux-64::glib-tools-2.74.1-h6239696_1
  gmp                conda-forge/linux-64::gmp-6.2.1-h58526e2_0
  gnutls             conda-forge/linux-64::gnutls-3.7.8-hf3e180e_0
  graphite2          conda-forge/linux-64::graphite2-1.3.13-h58526e2_1001
  gst-plugins-base   conda-forge/linux-64::gst-plugins-base-1.21.3-h4243ec0_1
  gstreamer          conda-forge/linux-64::gstreamer-1.21.3-h25f0c4b_1
  gstreamer-orc      conda-forge/linux-64::gstreamer-orc-0.4.33-h166bdaf_0
  harfbuzz           conda-forge/linux-64::harfbuzz-6.0.0-h8e241bc_0
  hdf5               conda-forge/linux-64::hdf5-1.12.2-nompi_h4df4325_101
  icu                conda-forge/linux-64::icu-70.1-h27087fc_0
  idna               conda-forge/noarch::idna-3.4-pyhd8ed1ab_0
  jack               conda-forge/linux-64::jack-1.9.21-h583fa2b_2
  jasper             conda-forge/linux-64::jasper-2.0.33-ha77e612_0
  jpeg               conda-forge/linux-64::jpeg-9e-h166bdaf_2
  keyutils           conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0
  krb5               conda-forge/linux-64::krb5-1.20.1-h81ceb04_0
  lame               conda-forge/linux-64::lame-3.100-h166bdaf_1003
  lcms2              conda-forge/linux-64::lcms2-2.14-hfd0df8a_1
  ld_impl_linux-64   conda-forge/linux-64::ld_impl_linux-64-2.39-hcc3a1bd_1
  lerc               conda-forge/linux-64::lerc-4.0.0-h27087fc_0
  libaec             conda-forge/linux-64::libaec-1.0.6-h9c3ff4c_0
  libblas            conda-forge/linux-64::libblas-3.9.0-6_mkl
  libcap             conda-forge/linux-64::libcap-2.66-ha37c62d_0
  libcblas           conda-forge/linux-64::libcblas-3.9.0-6_mkl
  libclang           conda-forge/linux-64::libclang-15.0.6-default_h2e3cab8_0
  libclang13         conda-forge/linux-64::libclang13-15.0.6-default_h3a83d3e_0
  libcups            conda-forge/linux-64::libcups-2.3.3-h36d4200_3
  libcurl            conda-forge/linux-64::libcurl-7.87.0-hdc1c0ab_0
  libdb              conda-forge/linux-64::libdb-6.2.32-h9c3ff4c_0
  libdeflate         conda-forge/linux-64::libdeflate-1.14-h166bdaf_0
  libdrm             conda-forge/linux-64::libdrm-2.4.114-h166bdaf_0
  libedit            conda-forge/linux-64::libedit-3.1.20191231-he28a2e2_2
  libev              conda-forge/linux-64::libev-4.33-h516909a_1
  libevent           conda-forge/linux-64::libevent-2.1.10-h28343ad_4
  libffi             conda-forge/linux-64::libffi-3.4.2-h7f98852_5
  libflac            conda-forge/linux-64::libflac-1.4.2-h27087fc_0
  libgcc-ng          conda-forge/linux-64::libgcc-ng-12.2.0-h65d4601_19
  libgcrypt          conda-forge/linux-64::libgcrypt-1.10.1-h166bdaf_0
  libgfortran-ng     conda-forge/linux-64::libgfortran-ng-12.2.0-h69a702a_19
  libgfortran5       conda-forge/linux-64::libgfortran5-12.2.0-h337968e_19
  libglib            conda-forge/linux-64::libglib-2.74.1-h606061b_1
  libglu             conda-forge/linux-64::libglu-9.0.0-he1b5a44_1001
  libgpg-error       conda-forge/linux-64::libgpg-error-1.45-hc0c96e0_0
  libiconv           conda-forge/linux-64::libiconv-1.17-h166bdaf_0
  libidn2            conda-forge/linux-64::libidn2-2.3.4-h166bdaf_0
  liblapack          conda-forge/linux-64::liblapack-3.9.0-6_mkl
  liblapacke         conda-forge/linux-64::liblapacke-3.9.0-6_mkl
  libllvm15          conda-forge/linux-64::libllvm15-15.0.6-h63197d8_0
  libnghttp2         conda-forge/linux-64::libnghttp2-1.47.0-hff17c54_1
  libnsl             conda-forge/linux-64::libnsl-2.0.0-h7f98852_0
  libogg             conda-forge/linux-64::libogg-1.3.4-h7f98852_1
  libopencv          conda-forge/linux-64::libopencv-4.6.0-py310h5bd1119_9
  libopus            conda-forge/linux-64::libopus-1.3.1-h7f98852_1
  libpciaccess       conda-forge/linux-64::libpciaccess-0.17-h166bdaf_0
  libpng             conda-forge/linux-64::libpng-1.6.39-h753d276_0
  libpq              conda-forge/linux-64::libpq-15.1-hb675445_2
  libprotobuf        conda-forge/linux-64::libprotobuf-3.21.12-h3eb15da_0
  libsndfile         conda-forge/linux-64::libsndfile-1.1.0-hcb278e6_1
  libsqlite          conda-forge/linux-64::libsqlite-3.40.0-h753d276_0
  libssh2            conda-forge/linux-64::libssh2-1.10.0-hf14f497_3
  libstdcxx-ng       conda-forge/linux-64::libstdcxx-ng-12.2.0-h46fd767_19
  libsystemd0        conda-forge/linux-64::libsystemd0-252-h2a991cd_0
  libtasn1           conda-forge/linux-64::libtasn1-4.19.0-h166bdaf_0
  libtiff            conda-forge/linux-64::libtiff-4.5.0-h82bc61c_0
  libtool            conda-forge/linux-64::libtool-2.4.6-h9c3ff4c_1008
  libudev1           conda-forge/linux-64::libudev1-252-h166bdaf_0
  libunistring       conda-forge/linux-64::libunistring-0.9.10-h7f98852_0
  libuuid            conda-forge/linux-64::libuuid-2.32.1-h7f98852_1000
  libva              conda-forge/linux-64::libva-2.16.0-h166bdaf_0
  libvorbis          conda-forge/linux-64::libvorbis-1.3.7-h9c3ff4c_0
  libvpx             conda-forge/linux-64::libvpx-1.11.0-h9c3ff4c_3
  libwebp-base       conda-forge/linux-64::libwebp-base-1.2.4-h166bdaf_0
  libxcb             conda-forge/linux-64::libxcb-1.13-h7f98852_1004
  libxkbcommon       conda-forge/linux-64::libxkbcommon-1.0.3-he3ba5ed_0
  libxml2            conda-forge/linux-64::libxml2-2.10.3-h7463322_0
  libzlib            conda-forge/linux-64::libzlib-1.2.13-h166bdaf_4
  llvm-openmp        conda-forge/linux-64::llvm-openmp-15.0.6-he0ac6c6_0
  lz4-c              conda-forge/linux-64::lz4-c-1.9.3-h9c3ff4c_1
  mkl                conda-forge/linux-64::mkl-2020.4-h726a3e6_304
  mpg123             conda-forge/linux-64::mpg123-1.31.1-h27087fc_0
  mysql-common       conda-forge/linux-64::mysql-common-8.0.31-h26416b9_0
  mysql-libs         conda-forge/linux-64::mysql-libs-8.0.31-hbc51c84_0
  ncurses            conda-forge/linux-64::ncurses-6.3-h27087fc_1
  nettle             conda-forge/linux-64::nettle-3.8.1-hc379101_1
  nspr               conda-forge/linux-64::nspr-4.35-h27087fc_0
  nss                conda-forge/linux-64::nss-3.82-he02c5a1_0
  numpy              conda-forge/linux-64::numpy-1.24.0-py310h08bbf29_0
  opencv             conda-forge/linux-64::opencv-4.6.0-py310hff52083_9
  openh264           conda-forge/linux-64::openh264-2.3.1-h27087fc_1
  openjpeg           conda-forge/linux-64::openjpeg-2.5.0-hfec8fc6_2
  openssl            conda-forge/linux-64::openssl-3.0.7-h0b41bf4_1
  p11-kit            conda-forge/linux-64::p11-kit-0.24.1-hc5aa10d_0
  pcre2              conda-forge/linux-64::pcre2-10.40-hc3806b6_0
  pillow             conda-forge/linux-64::pillow-9.2.0-py310h023d228_4
  pip                conda-forge/noarch::pip-22.3.1-pyhd8ed1ab_0
  pixman             conda-forge/linux-64::pixman-0.40.0-h36c2ea0_0
  pthread-stubs      conda-forge/linux-64::pthread-stubs-0.4-h36c2ea0_1001
  pulseaudio         conda-forge/linux-64::pulseaudio-16.1-h126f2b6_0
  py-opencv          conda-forge/linux-64::py-opencv-4.6.0-py310hfdc917e_9
  pycparser          conda-forge/noarch::pycparser-2.21-pyhd8ed1ab_0
  pyopenssl          conda-forge/noarch::pyopenssl-22.1.0-pyhd8ed1ab_0
  pysocks            conda-forge/linux-64::pysocks-1.7.1-py310hff52083_5
  python             conda-forge/linux-64::python-3.10.8-h4a9ceb5_0_cpython
  python_abi         conda-forge/linux-64::python_abi-3.10-3_cp310
  pytorch            pytorch/linux-64::pytorch-1.13.1-py3.10_cpu_0
  pytorch-mutex      pytorch/noarch::pytorch-mutex-1.0-cpu
  qt-main            conda-forge/linux-64::qt-main-5.15.6-hf6cd601_5
  readline           conda-forge/linux-64::readline-8.1.2-h0f457ee_0
  requests           conda-forge/noarch::requests-2.28.1-pyhd8ed1ab_1
  setuptools         conda-forge/noarch::setuptools-65.6.3-pyhd8ed1ab_0
  svt-av1            conda-forge/linux-64::svt-av1-1.4.1-hcb278e6_0
  tk                 conda-forge/linux-64::tk-8.6.12-h27826a3_0
  torchvision        pytorch/linux-64::torchvision-0.14.1-py310_cpu
  typing_extensions  conda-forge/noarch::typing_extensions-4.4.0-pyha770c72_0
  tzdata             conda-forge/noarch::tzdata-2022g-h191b570_0
  urllib3            conda-forge/noarch::urllib3-1.26.13-pyhd8ed1ab_0
  wheel              conda-forge/noarch::wheel-0.38.4-pyhd8ed1ab_0
  x264               conda-forge/linux-64::x264-1!164.3095-h166bdaf_2
  x265               conda-forge/linux-64::x265-3.5-h924138e_3
  xcb-util           conda-forge/linux-64::xcb-util-0.4.0-h166bdaf_0
  xcb-util-image     conda-forge/linux-64::xcb-util-image-0.4.0-h166bdaf_0
  xcb-util-keysyms   conda-forge/linux-64::xcb-util-keysyms-0.4.0-h166bdaf_0
  xcb-util-renderut~ conda-forge/linux-64::xcb-util-renderutil-0.3.9-h166bdaf_0
  xcb-util-wm        conda-forge/linux-64::xcb-util-wm-0.4.1-h166bdaf_0
  xorg-fixesproto    conda-forge/linux-64::xorg-fixesproto-5.0-h7f98852_1002
  xorg-inputproto    conda-forge/linux-64::xorg-inputproto-2.3.2-h7f98852_1002
  xorg-kbproto       conda-forge/linux-64::xorg-kbproto-1.0.7-h7f98852_1002
  xorg-libice        conda-forge/linux-64::xorg-libice-1.0.10-h7f98852_0
  xorg-libsm         conda-forge/linux-64::xorg-libsm-1.2.3-hd9c2040_1000
  xorg-libx11        conda-forge/linux-64::xorg-libx11-1.7.2-h7f98852_0
  xorg-libxau        conda-forge/linux-64::xorg-libxau-1.0.9-h7f98852_0
  xorg-libxdmcp      conda-forge/linux-64::xorg-libxdmcp-1.1.3-h7f98852_0
  xorg-libxext       conda-forge/linux-64::xorg-libxext-1.3.4-h7f98852_1
  xorg-libxfixes     conda-forge/linux-64::xorg-libxfixes-5.0.3-h7f98852_1004
  xorg-libxi         conda-forge/linux-64::xorg-libxi-1.7.10-h7f98852_0
  xorg-libxrender    conda-forge/linux-64::xorg-libxrender-0.9.10-h7f98852_1003
  xorg-renderproto   conda-forge/linux-64::xorg-renderproto-0.11.1-h7f98852_1002
  xorg-xextproto     conda-forge/linux-64::xorg-xextproto-7.3.0-h7f98852_1002
  xorg-xproto        conda-forge/linux-64::xorg-xproto-7.0.31-h7f98852_1007
  xz                 conda-forge/linux-64::xz-5.2.6-h166bdaf_0
  zlib               conda-forge/linux-64::zlib-1.2.13-h166bdaf_4
  zstd               conda-forge/linux-64::zstd-1.5.2-h6239696_4



DryRunExit: Dry run. Exiting.
$ conda create -n py3.7-cpu python=3.7 pytorch torchvision opencv -c pytorch -c conda-forge --dry-run
Log
The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    ca-certificates-2022.12.7  |       ha878542_0         143 KB  conda-forge
    certifi-2022.12.7          |     pyhd8ed1ab_0         147 KB  conda-forge
    cffi-1.15.1                |   py37h43b0acd_1         227 KB  conda-forge
    cryptography-37.0.4        |   py37h38fbfac_0         1.5 MB  conda-forge
    dbus-1.13.6                |       h5008d03_3         604 KB  conda-forge
    ffmpeg-5.1.2               | gpl_h8dda1f0_105         9.2 MB  conda-forge
    fftw-3.3.10                |nompi_hf0379b8_106         2.1 MB  conda-forge
    graphite2-1.3.13           |    h58526e2_1001         102 KB  conda-forge
    gst-plugins-base-1.21.3    |       h4243ec0_1         2.6 MB  conda-forge
    gstreamer-1.21.3           |       h25f0c4b_1         1.9 MB  conda-forge
    gstreamer-orc-0.4.33       |       h166bdaf_0         299 KB  conda-forge
    hdf5-1.12.2                |nompi_h2386368_101         3.2 MB  conda-forge
    jack-1.9.21                |       h583fa2b_2         450 KB  conda-forge
    krb5-1.20.1                |       hf9c8cef_0         1.3 MB  conda-forge
    libaec-1.0.6               |       h9c3ff4c_0          45 KB  conda-forge
    libblas-3.9.0              |            6_mkl          11 KB  conda-forge
    libclang-15.0.6            |default_h2e3cab8_0         129 KB  conda-forge
    libclang13-15.0.6          |default_h3a83d3e_0         9.0 MB  conda-forge
    libcups-2.3.3              |       h36d4200_3         4.3 MB  conda-forge
    libcurl-7.87.0             |       h6312ad2_0         339 KB  conda-forge
    libdb-6.2.32               |       h9c3ff4c_0        23.3 MB  conda-forge
    libgcrypt-1.10.1           |       h166bdaf_0         703 KB  conda-forge
    libgpg-error-1.45          |       hc0c96e0_0         286 KB  conda-forge
    libllvm15-15.0.6           |       h63197d8_0        30.5 MB  conda-forge
    libopencv-4.6.0            |   py37h7b66c90_5        35.3 MB  conda-forge
    libpq-15.1                 |       h2baec63_2         2.3 MB  conda-forge
    libprotobuf-3.21.12        |       h3eb15da_0         2.1 MB  conda-forge
    libsndfile-1.1.0           |       hcb278e6_1         341 KB  conda-forge
    libsystemd0-252            |       h2a991cd_0         384 KB  conda-forge
    libtiff-4.4.0              |       h82bc61c_5         473 KB  conda-forge
    libunistring-0.9.10        |       h7f98852_0         1.4 MB  conda-forge
    mpg123-1.31.1              |       h27087fc_0         522 KB  conda-forge
    nspr-4.35                  |       h27087fc_0         222 KB  conda-forge
    nss-3.82                   |       he02c5a1_0         1.9 MB  conda-forge
    opencv-4.6.0               |   py37h89c1867_5          24 KB  conda-forge
    pulseaudio-16.1            |       h4a94279_0         1.7 MB  conda-forge
    py-opencv-4.6.0            |   py37hf05f0b3_5         1.1 MB  conda-forge
    pyopenssl-22.0.0           |     pyhd8ed1ab_1         120 KB  conda-forge
    python_abi-3.7             |          3_cp37m           6 KB  conda-forge
    pytorch-1.13.1             |      py3.7_cpu_0        81.5 MB  pytorch
    pytorch-mutex-1.0          |              cpu           3 KB  pytorch
    qt-main-5.15.6             |       h62441b5_5        52.3 MB  conda-forge
    setuptools-65.6.3          |     pyhd8ed1ab_0         619 KB  conda-forge
    svt-av1-1.4.1              |       hcb278e6_0         2.4 MB  conda-forge
    torchvision-0.14.1         |         py37_cpu        25.3 MB  pytorch
    xcb-util-0.4.0             |       h166bdaf_0          20 KB  conda-forge
    xcb-util-keysyms-0.4.0     |       h166bdaf_0          12 KB  conda-forge
    xcb-util-wm-0.4.1          |       h166bdaf_0          55 KB  conda-forge
    xorg-fixesproto-5.0        |    h7f98852_1002           9 KB  conda-forge
    xorg-inputproto-2.3.2      |    h7f98852_1002          19 KB  conda-forge
    xorg-kbproto-1.0.7         |    h7f98852_1002          27 KB  conda-forge
    xorg-libice-1.0.10         |       h7f98852_0          58 KB  conda-forge
    xorg-renderproto-0.11.1    |    h7f98852_1002           9 KB  conda-forge
    xorg-xextproto-7.3.0       |    h7f98852_1002          28 KB  conda-forge
    xorg-xproto-7.0.31         |    h7f98852_1007          73 KB  conda-forge
    ------------------------------------------------------------
                                           Total:       302.4 MB

The following NEW packages will be INSTALLED:

  _libgcc_mutex      conda-forge/linux-64::_libgcc_mutex-0.1-conda_forge 
  _openmp_mutex      conda-forge/linux-64::_openmp_mutex-4.5-2_kmp_llvm 
  alsa-lib           conda-forge/linux-64::alsa-lib-1.2.8-h166bdaf_0 
  aom                conda-forge/linux-64::aom-3.5.0-h27087fc_0 
  attr               conda-forge/linux-64::attr-2.5.1-h166bdaf_1 
  blas               conda-forge/linux-64::blas-2.106-mkl 
  brotlipy           conda-forge/linux-64::brotlipy-0.7.0-py37h540881e_1004 
  bzip2              conda-forge/linux-64::bzip2-1.0.8-h7f98852_4 
  c-ares             conda-forge/linux-64::c-ares-1.18.1-h7f98852_0 
  ca-certificates    conda-forge/linux-64::ca-certificates-2022.12.7-ha878542_0 
  cairo              conda-forge/linux-64::cairo-1.16.0-ha61ee94_1014 
  certifi            conda-forge/noarch::certifi-2022.12.7-pyhd8ed1ab_0 
  cffi               conda-forge/linux-64::cffi-1.15.1-py37h43b0acd_1 
  charset-normalizer conda-forge/noarch::charset-normalizer-2.1.1-pyhd8ed1ab_0 
  cryptography       conda-forge/linux-64::cryptography-37.0.4-py37h38fbfac_0 
  dbus               conda-forge/linux-64::dbus-1.13.6-h5008d03_3 
  expat              conda-forge/linux-64::expat-2.5.0-h27087fc_0 
  ffmpeg             conda-forge/linux-64::ffmpeg-5.1.2-gpl_h8dda1f0_105 
  fftw               conda-forge/linux-64::fftw-3.3.10-nompi_hf0379b8_106 
  font-ttf-dejavu-s~ conda-forge/noarch::font-ttf-dejavu-sans-mono-2.37-hab24e00_0 
  font-ttf-inconsol~ conda-forge/noarch::font-ttf-inconsolata-3.000-h77eed37_0 
  font-ttf-source-c~ conda-forge/noarch::font-ttf-source-code-pro-2.038-h77eed37_0 
  font-ttf-ubuntu    conda-forge/noarch::font-ttf-ubuntu-0.83-hab24e00_0 
  fontconfig         conda-forge/linux-64::fontconfig-2.14.1-hc2a2eb6_0 
  fonts-conda-ecosy~ conda-forge/noarch::fonts-conda-ecosystem-1-0 
  fonts-conda-forge  conda-forge/noarch::fonts-conda-forge-1-0 
  freeglut           conda-forge/linux-64::freeglut-3.2.2-h9c3ff4c_1 
  freetype           conda-forge/linux-64::freetype-2.12.1-hca18f0e_1 
  gettext            conda-forge/linux-64::gettext-0.21.1-h27087fc_0 
  glib               conda-forge/linux-64::glib-2.74.1-h6239696_1 
  glib-tools         conda-forge/linux-64::glib-tools-2.74.1-h6239696_1 
  gmp                conda-forge/linux-64::gmp-6.2.1-h58526e2_0 
  gnutls             conda-forge/linux-64::gnutls-3.7.8-hf3e180e_0 
  graphite2          conda-forge/linux-64::graphite2-1.3.13-h58526e2_1001 
  gst-plugins-base   conda-forge/linux-64::gst-plugins-base-1.21.3-h4243ec0_1 
  gstreamer          conda-forge/linux-64::gstreamer-1.21.3-h25f0c4b_1 
  gstreamer-orc      conda-forge/linux-64::gstreamer-orc-0.4.33-h166bdaf_0 
  harfbuzz           conda-forge/linux-64::harfbuzz-5.3.0-h418a68e_0 
  hdf5               conda-forge/linux-64::hdf5-1.12.2-nompi_h2386368_101 
  icu                conda-forge/linux-64::icu-70.1-h27087fc_0 
  idna               conda-forge/noarch::idna-3.4-pyhd8ed1ab_0 
  jack               conda-forge/linux-64::jack-1.9.21-h583fa2b_2 
  jasper             conda-forge/linux-64::jasper-2.0.33-ha77e612_0 
  jpeg               conda-forge/linux-64::jpeg-9e-h166bdaf_2 
  keyutils           conda-forge/linux-64::keyutils-1.6.1-h166bdaf_0 
  krb5               conda-forge/linux-64::krb5-1.20.1-hf9c8cef_0 
  lame               conda-forge/linux-64::lame-3.100-h166bdaf_1003 
  lcms2              conda-forge/linux-64::lcms2-2.14-h6ed2654_0 
  ld_impl_linux-64   conda-forge/linux-64::ld_impl_linux-64-2.39-hcc3a1bd_1 
  lerc               conda-forge/linux-64::lerc-4.0.0-h27087fc_0 
  libaec             conda-forge/linux-64::libaec-1.0.6-h9c3ff4c_0 
  libblas            conda-forge/linux-64::libblas-3.9.0-6_mkl 
  libcap             conda-forge/linux-64::libcap-2.66-ha37c62d_0 
  libcblas           conda-forge/linux-64::libcblas-3.9.0-6_mkl 
  libclang           conda-forge/linux-64::libclang-15.0.6-default_h2e3cab8_0 
  libclang13         conda-forge/linux-64::libclang13-15.0.6-default_h3a83d3e_0 
  libcups            conda-forge/linux-64::libcups-2.3.3-h36d4200_3 
  libcurl            conda-forge/linux-64::libcurl-7.87.0-h6312ad2_0 
  libdb              conda-forge/linux-64::libdb-6.2.32-h9c3ff4c_0 
  libdeflate         conda-forge/linux-64::libdeflate-1.14-h166bdaf_0 
  libdrm             conda-forge/linux-64::libdrm-2.4.114-h166bdaf_0 
  libedit            conda-forge/linux-64::libedit-3.1.20191231-he28a2e2_2 
  libev              conda-forge/linux-64::libev-4.33-h516909a_1 
  libevent           conda-forge/linux-64::libevent-2.1.10-h9b69904_4 
  libffi             conda-forge/linux-64::libffi-3.4.2-h7f98852_5 
  libflac            conda-forge/linux-64::libflac-1.4.2-h27087fc_0 
  libgcc-ng          conda-forge/linux-64::libgcc-ng-12.2.0-h65d4601_19 
  libgcrypt          conda-forge/linux-64::libgcrypt-1.10.1-h166bdaf_0 
  libgfortran-ng     conda-forge/linux-64::libgfortran-ng-12.2.0-h69a702a_19 
  libgfortran5       conda-forge/linux-64::libgfortran5-12.2.0-h337968e_19 
  libglib            conda-forge/linux-64::libglib-2.74.1-h606061b_1 
  libglu             conda-forge/linux-64::libglu-9.0.0-he1b5a44_1001 
  libgpg-error       conda-forge/linux-64::libgpg-error-1.45-hc0c96e0_0 
  libiconv           conda-forge/linux-64::libiconv-1.17-h166bdaf_0 
  libidn2            conda-forge/linux-64::libidn2-2.3.4-h166bdaf_0 
  liblapack          conda-forge/linux-64::liblapack-3.9.0-6_mkl 
  liblapacke         conda-forge/linux-64::liblapacke-3.9.0-6_mkl 
  libllvm15          conda-forge/linux-64::libllvm15-15.0.6-h63197d8_0 
  libnghttp2         conda-forge/linux-64::libnghttp2-1.47.0-hdcd2b5c_1 
  libnsl             conda-forge/linux-64::libnsl-2.0.0-h7f98852_0 
  libogg             conda-forge/linux-64::libogg-1.3.4-h7f98852_1 
  libopencv          conda-forge/linux-64::libopencv-4.6.0-py37h7b66c90_5 
  libopus            conda-forge/linux-64::libopus-1.3.1-h7f98852_1 
  libpciaccess       conda-forge/linux-64::libpciaccess-0.17-h166bdaf_0 
  libpng             conda-forge/linux-64::libpng-1.6.39-h753d276_0 
  libpq              conda-forge/linux-64::libpq-15.1-h2baec63_2 
  libprotobuf        conda-forge/linux-64::libprotobuf-3.21.12-h3eb15da_0 
  libsndfile         conda-forge/linux-64::libsndfile-1.1.0-hcb278e6_1 
  libsqlite          conda-forge/linux-64::libsqlite-3.40.0-h753d276_0 
  libssh2            conda-forge/linux-64::libssh2-1.10.0-haa6b8db_3 
  libstdcxx-ng       conda-forge/linux-64::libstdcxx-ng-12.2.0-h46fd767_19 
  libsystemd0        conda-forge/linux-64::libsystemd0-252-h2a991cd_0 
  libtasn1           conda-forge/linux-64::libtasn1-4.19.0-h166bdaf_0 
  libtiff            conda-forge/linux-64::libtiff-4.4.0-h82bc61c_5 
  libtool            conda-forge/linux-64::libtool-2.4.6-h9c3ff4c_1008 
  libudev1           conda-forge/linux-64::libudev1-252-h166bdaf_0 
  libunistring       conda-forge/linux-64::libunistring-0.9.10-h7f98852_0 
  libuuid            conda-forge/linux-64::libuuid-2.32.1-h7f98852_1000 
  libva              conda-forge/linux-64::libva-2.16.0-h166bdaf_0 
  libvorbis          conda-forge/linux-64::libvorbis-1.3.7-h9c3ff4c_0 
  libvpx             conda-forge/linux-64::libvpx-1.11.0-h9c3ff4c_3 
  libwebp-base       conda-forge/linux-64::libwebp-base-1.2.4-h166bdaf_0 
  libxcb             conda-forge/linux-64::libxcb-1.13-h7f98852_1004 
  libxkbcommon       conda-forge/linux-64::libxkbcommon-1.0.3-he3ba5ed_0 
  libxml2            conda-forge/linux-64::libxml2-2.10.3-h7463322_0 
  libzlib            conda-forge/linux-64::libzlib-1.2.13-h166bdaf_4 
  llvm-openmp        conda-forge/linux-64::llvm-openmp-15.0.6-he0ac6c6_0 
  lz4-c              conda-forge/linux-64::lz4-c-1.9.3-h9c3ff4c_1 
  mkl                conda-forge/linux-64::mkl-2020.4-h726a3e6_304 
  mpg123             conda-forge/linux-64::mpg123-1.31.1-h27087fc_0 
  mysql-common       conda-forge/linux-64::mysql-common-8.0.31-haf5c9bc_0 
  mysql-libs         conda-forge/linux-64::mysql-libs-8.0.31-h28c427c_0 
  ncurses            conda-forge/linux-64::ncurses-6.3-h27087fc_1 
  nettle             conda-forge/linux-64::nettle-3.8.1-hc379101_1 
  nspr               conda-forge/linux-64::nspr-4.35-h27087fc_0 
  nss                conda-forge/linux-64::nss-3.82-he02c5a1_0 
  numpy              conda-forge/linux-64::numpy-1.21.6-py37h976b520_0 
  opencv             conda-forge/linux-64::opencv-4.6.0-py37h89c1867_5 
  openh264           conda-forge/linux-64::openh264-2.3.1-h27087fc_1 
  openjpeg           conda-forge/linux-64::openjpeg-2.5.0-h7d73246_1 
  openssl            conda-forge/linux-64::openssl-1.1.1s-h0b41bf4_1 
  p11-kit            conda-forge/linux-64::p11-kit-0.24.1-hc5aa10d_0 
  pcre2              conda-forge/linux-64::pcre2-10.40-hc3806b6_0 
  pillow             conda-forge/linux-64::pillow-9.2.0-py37h850a105_2 
  pip                conda-forge/noarch::pip-22.3.1-pyhd8ed1ab_0 
  pixman             conda-forge/linux-64::pixman-0.40.0-h36c2ea0_0 
  pthread-stubs      conda-forge/linux-64::pthread-stubs-0.4-h36c2ea0_1001 
  pulseaudio         conda-forge/linux-64::pulseaudio-16.1-h4a94279_0 
  py-opencv          conda-forge/linux-64::py-opencv-4.6.0-py37hf05f0b3_5 
  pycparser          conda-forge/noarch::pycparser-2.21-pyhd8ed1ab_0 
  pyopenssl          conda-forge/noarch::pyopenssl-22.0.0-pyhd8ed1ab_1 
  pysocks            conda-forge/linux-64::pysocks-1.7.1-py37h89c1867_5 
  python             conda-forge/linux-64::python-3.7.12-hb7a2778_100_cpython 
  python_abi         conda-forge/linux-64::python_abi-3.7-3_cp37m 
  pytorch            pytorch/linux-64::pytorch-1.13.1-py3.7_cpu_0 
  pytorch-mutex      pytorch/noarch::pytorch-mutex-1.0-cpu 
  qt-main            conda-forge/linux-64::qt-main-5.15.6-h62441b5_5 
  readline           conda-forge/linux-64::readline-8.1.2-h0f457ee_0 
  requests           conda-forge/noarch::requests-2.28.1-pyhd8ed1ab_1 
  setuptools         conda-forge/noarch::setuptools-65.6.3-pyhd8ed1ab_0 
  sqlite             conda-forge/linux-64::sqlite-3.40.0-h4ff8645_0 
  svt-av1            conda-forge/linux-64::svt-av1-1.4.1-hcb278e6_0 
  tk                 conda-forge/linux-64::tk-8.6.12-h27826a3_0 
  torchvision        pytorch/linux-64::torchvision-0.14.1-py37_cpu 
  typing_extensions  conda-forge/noarch::typing_extensions-4.4.0-pyha770c72_0 
  urllib3            conda-forge/noarch::urllib3-1.26.13-pyhd8ed1ab_0 
  wheel              conda-forge/noarch::wheel-0.38.4-pyhd8ed1ab_0 
  x264               conda-forge/linux-64::x264-1!164.3095-h166bdaf_2 
  x265               conda-forge/linux-64::x265-3.5-h924138e_3 
  xcb-util           conda-forge/linux-64::xcb-util-0.4.0-h166bdaf_0 
  xcb-util-image     conda-forge/linux-64::xcb-util-image-0.4.0-h166bdaf_0 
  xcb-util-keysyms   conda-forge/linux-64::xcb-util-keysyms-0.4.0-h166bdaf_0 
  xcb-util-renderut~ conda-forge/linux-64::xcb-util-renderutil-0.3.9-h166bdaf_0 
  xcb-util-wm        conda-forge/linux-64::xcb-util-wm-0.4.1-h166bdaf_0 
  xorg-fixesproto    conda-forge/linux-64::xorg-fixesproto-5.0-h7f98852_1002 
  xorg-inputproto    conda-forge/linux-64::xorg-inputproto-2.3.2-h7f98852_1002 
  xorg-kbproto       conda-forge/linux-64::xorg-kbproto-1.0.7-h7f98852_1002 
  xorg-libice        conda-forge/linux-64::xorg-libice-1.0.10-h7f98852_0 
  xorg-libsm         conda-forge/linux-64::xorg-libsm-1.2.3-hd9c2040_1000 
  xorg-libx11        conda-forge/linux-64::xorg-libx11-1.7.2-h7f98852_0 
  xorg-libxau        conda-forge/linux-64::xorg-libxau-1.0.9-h7f98852_0 
  xorg-libxdmcp      conda-forge/linux-64::xorg-libxdmcp-1.1.3-h7f98852_0 
  xorg-libxext       conda-forge/linux-64::xorg-libxext-1.3.4-h7f98852_1 
  xorg-libxfixes     conda-forge/linux-64::xorg-libxfixes-5.0.3-h7f98852_1004 
  xorg-libxi         conda-forge/linux-64::xorg-libxi-1.7.10-h7f98852_0 
  xorg-libxrender    conda-forge/linux-64::xorg-libxrender-0.9.10-h7f98852_1003 
  xorg-renderproto   conda-forge/linux-64::xorg-renderproto-0.11.1-h7f98852_1002 
  xorg-xextproto     conda-forge/linux-64::xorg-xextproto-7.3.0-h7f98852_1002 
  xorg-xproto        conda-forge/linux-64::xorg-xproto-7.0.31-h7f98852_1007 
  xz                 conda-forge/linux-64::xz-5.2.6-h166bdaf_0 
  zlib               conda-forge/linux-64::zlib-1.2.13-h166bdaf_4 
  zstd               conda-forge/linux-64::zstd-1.5.2-h6239696_4 



DryRunExit: Dry run. Exiting.

Given that you have self-assigned this issue, do you want to debug further, or can we close this?

@vadimkantorov
Copy link

It would be super good to have these installation commands added to CI somehow.

Having workable / tested installation commands for the common setup (pytorch / torchvision / torchaudio / opencv / ffmpeg / blender) is very needed, especially given different ffmpeg wrappers in torchvision and in torchaudio

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
release-issue For release-related issues topic: binaries
Projects
None yet
Development

No branches or pull requests

6 participants