Self-supervised Deep LiDAR Odometry for Robotic Applications

Overview

DeLORA: Self-supervised Deep LiDAR Odometry for Robotic Applications

Overview

This is the corresponding code to the above paper ("Self-supervised Learning of LiDAR Odometry for Robotic Applications") which is published at the International Conference on Robotics and Automation (ICRA) 2021. The code is provided by the Robotics Systems Lab at ETH Zurich, Switzerland.

** Authors:** Julian Nubert ([email protected]) , Shehryar Khattak , Marco Hutter

title_img

Copyright IEEE

Python Setup

We provide a conda environment for running our code.

Conda

The conda environment is very comfortable to use in combination with PyTorch because only NVidia drivers are needed. The Installation of suitable CUDA and CUDNN libraries is all handle by Conda.

  • Install conda: link
  • To set up the conda environment run the following command:
conda env create -f conda/DeLORA-py3.9.yml

This installs an environment including GPU-enabled PyTorch, including any needed CUDA and cuDNN dependencies.

  • Activate the environment:
conda activate DeLORA-py3.9
  • Install the package to set all paths correctly:
pip3 install -e .

ROS Setup

For running ROS code in the ./src/ros_utils/ folder you need to have ROS installed (link). We recommend Ubuntu 20.04 and ROS Noetic due to its native Python3 support. For performing inference in Python2.7, convert your PyTorch model with ./scripts/convert_pytorch_models.py and run an older PyTorch version (<1.3).

ros-numpy

In any case you need to install ros-numpy if you want to make use of the provided rosnode:

sudo apt install ros-<distro>-ros-numpy

Datasets and Preprocessing

Instructions on how to use and preprocess the datasets can be found in the ./datasets/ folder. We provide scripts for doing the preprocessing for:

  1. general rosbags containing LiDAR scans,
  2. and for the KITTI dataset in its own format.

Example: KITTI Dataset

LiDAR Scans

Download the "velodyne laster data" from the official KITTI odometry evaluation ( 80GB): link. Put it to <delora_ws>/datasets/kitti, where kitti contains /data_odometry_velodyne/dataset/sequences/00..21.

Groundtruth poses

Please also download the groundtruth poses here. Make sure that the files are located at <delora_ws>/datasets/kitti, where kitti contains /data_odometry_poses/dataset/poses/00..10.txt.

Preprocessing

In the file ./config/deployment_options.yaml make sure to set datasets: ["kitti"]. Then run

preprocess_data.py

Custom Dataset

If you want to add an own dataset please add its sensor specifications to ./config/config_datasets.yaml and ./config/config_datasets_preprocessing.yaml. Information that needs to be added is the dataset name, its sequences and its sensor specifications such as vertical field of view and number of rings.

Deploy

After preprocessing, for each dataset we assume the following hierarchical structure: dataset_name/sequence/scan (see previous dataset example). Our code natively supports training and/or testing on various datasets with various sequences at the same time.

Training

Run the training with the following command:

run_training.py

The training will be executed for the dataset(s) specified in ./config/deployment_options.yaml. You will be prompted to enter a name for this training run, which will be used for reference in the MLFlow logging.

Custom Settings

For custom settings and hyper-parameters please have a look in ./config/.

By default loading from RAM is disabled. If you have enough memory, enable it in ./config/deployment_options.yaml. When loading from disk, the first few iterations are sometimes slow due to I/O, but it should accelerate quite quickly. For storing the KITTI training set entirely in memory, roughly 50GB of RAM are required.

Continuing Training

For continuing training provide the --checkpoint flag with a path to the model checkpoint to the script above.

Visualizing progress and results

For visualizing progress we use MLFlow. It allows for simple logging of parameters, metrics, images, and artifacts. Artifacts could e.g. also be whole TensorBoard logfiles. To visualize the training progress execute (from DeLORA folder):

mlflow ui 

The MLFlow can then be visualized in your browser following the link in the terminal.

Testing

Testing can be run along the line:

run_testing.py --checkpoint <path_to_checkpoint>

The checkpoint can be found in MLFlow after training. It runs testing for the dataset specified in ./config/deployment_options.yaml.

We provide an exemplary trained model in ./checkpoints/kitti_example.pth.

ROS-Node

This ROS-node takes the pretrained model at location <model_location> and performs inference; i.e. it predicts and publishes the relative transformation between incoming point cloud scans. The variable <dataset> should contain the name of the dataset in the config files, e.g. kitti, in order to load the corresponding parameters. Topic and frame names can be specified in the following way:

run_rosnode.py --checkpoint <model_location> --dataset <dataset> --lidar_topic=<name_of_lidar_topic> --lidar_frame=<name_of_lidar_frame>

The resulting odometry will be published as a nav_msgs.msg.Odometry message under the topic /delora/odometry .

Example: DARPA Dataset

For the darpa dataset this could look as follows:

run_rosnode.py --checkpoint ~/Downloads/checkpoint_epoch_0.pth --dataset darpa --lidar_topic "/sherman/lidar_points" --lidar_frame sherman/ouster_link

Comfort Functions

Additional functionalities are provided in ./bin/ and ./scripts/.

Visualization of Normals (mainly for debugging)

Located in ./bin/, see the readme-file ./dataset/README.md for more information.

Creation of Rosbags for KITTI Dataset

After starting a roscore, conversion from KITTI dataset format to a rosbag can be done using the following command:

python scripts/convert_kitti_to_rosbag.py

The point cloud scans will be contained in the topic "/velodyne_points", located in the frame velodyne. E.g. for the created rosbag, our provided rosnode can be run using the following command:

run_rosnode.py --checkpoint ~/Downloads/checkpoint_epoch_30.pth --lidar_topic "/velodyne_points" --lidar_frame "velodyne"

Convert PyTorch Model to older PyTorch Compatibility

Converion of the new model <path_to_model>/model.pth to old (compatible with < PyTorch1.3) <path_to_model>/model_py27.pth can be done with the following:

python scripts/convert_pytorch_models.py --checkpoint <path_to_model>/model

Note that there is no .pth ending in the script.

Time The Network

The execution time of the network can be timed using:

python scripts/time_network.py

Paper

Thank you for citing DeLORA (ICRA-2021) if you use any of this code.

@inproceedings{nubert2021self,
  title={Self-supervised Learning of LiDAR Odometry for Robotic Applications},
  author={Nubert, Julian and Khattak, Shehryar and Hutter, Marco},
  booktitle={IEEE International Conference on Robotics and Automation (ICRA)},
  year={2021},
  organization={IEEE}
}

Dependencies

Dependencies are specified in ./conda/DeLORA-py3.9.yml and ./pip/requirements.txt.

Tuning

If the result does not achieve the desired performance, please have a look at the normal estimation, since the loss is usually dominated by the plane-to-plane loss, which is impacted by noisy normal estimates. For the results presented in the paper we picked some reasonable parameters without further fine-tuning, but we are convinced that less noisy normal estimates would lead to an even better convergence.

Comments
  • What is a reasonable training time on kitti dataset?

    What is a reasonable training time on kitti dataset?

    Hi, thank you for sharing the implementation and I have been testing the script as well as referencing the paper to have a better understanding of the entire implementations. Just wondering what is a reasonable expected training time on the 80G Kitti dataset? So far on my 64G memory machine with NVIDIA 2060 GPU, it takes around 25 minutes per epoch. I have tried with different batch_size but it didn't seem to improve the training time either.

    I understand to train with 50G worth of data would not be any where quick but 25 minutes per epoch for 10000 epochs seem to be really out of the normality.

    Thanks for your help!

    opened by g1y5x3 6
  • Issue with pip3 install -e .

    Issue with pip3 install -e .

    Hello, I was curious if anyone could help me with this error? After activating the conda environment and try to run the command pip3 install -e . as shown in the instructions I receive the following error:

    Screenshot from 2021-05-28 22-06-51

    When I look into the folder for clone_and_preprocess_darpa_dataset.sh I can not find it anywhere.

    opened by nickhward 4
  •  conda env create conflicts

    conda env create conflicts

    I run the command about create conda env but it shows many conflicts.

    **(torch) root@ubuntu:/data/DeLORA# conda env create -f conda/DeLORA-py3.9.yml Collecting package metadata (repodata.json): done Solving environment: - Found conflicts! Looking for incompatible packages. failed Solving environment: - Found conflicts! Looking for incompatible packages. failed

    UnsatisfiableError: The following specifications were found to be incompatible with each other:

    Output in format: Requested package -> Available versions

    Package libstdcxx-ng conflicts for: libstdcxx-ng==9.3.0=h6de172a_18 pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] gnutls==3.6.13=h85f3911_1 -> nettle[version='>=3.4.1'] -> libstdcxx-ng[version='>=4.9|>=7.3.0'] pcre==8.44=he6710b0_0 -> libstdcxx-ng[version='>=7.3.0'] gorilla==0.3.0=py_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] libllvm10==10.0.1=hbcb73fb_5 -> libstdcxx-ng[version='>=7.3.0'] ninja==1.10.2=h4bd325d_0 -> libstdcxx-ng[version='>=9.3.0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] ncurses==6.2=he6710b0_1 -> libstdcxx-ng[version='>=7.3.0'] zstd==1.4.9=ha95c52a_0 -> lz4-c[version='>=1.9.3,<1.9.4.0a0'] -> libstdcxx-ng[version='>=7.3.0'] openh264==2.1.1=h780b84a_0 -> libstdcxx-ng[version='>=9.3.0'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] gstreamer==1.14.0=h28cd5cc_2 -> glib[version='>=2.66.1,<3.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=9.3.0|>=7.5.0'] gnutls==3.6.13=h85f3911_1 -> libstdcxx-ng[version='>=7.5.0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> libstdcxx-ng[version='>=7.3.0'] libedit==3.1.20191231=h14c3975_1 -> ncurses[version='>=6.2,<7.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] ffmpeg==4.3=hf484d3e_0 -> libstdcxx-ng[version='>=7.3.0'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] kiwisolver==1.3.1=py39h2531618_0 -> libstdcxx-ng[version='>=7.3.0'] libprotobuf==3.15.6=h780b84a_0 -> libstdcxx-ng[version='>=9.3.0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] olefile==0.46=pyh9f0ad1d_1 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] python==3.9.2=hdb3f193_0 -> libffi[version='>=3.3,<3.4.0a0'] -> libstdcxx-ng[version='>=7.5.0'] protobuf==3.15.6=py39he80948d_0 -> libstdcxx-ng[version='>=9.3.0'] gmp==6.2.1=h58526e2_0 -> libstdcxx-ng[version='>=7.5.0'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] lcms2==2.11=h396b838_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=9.3.0|>=7.5.0'] pycparser==2.20=pyh9f0ad1d_2 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] glib==2.67.4=h36276a3_1 -> libffi[version='>=3.3,<3.4.0a0'] -> libstdcxx-ng[version='>=7.5.0'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.2.0|>=7.5.0|>=9.3.0'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> libstdcxx-ng[version='>=4.9|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] jinja2==2.11.3=pyh44b312d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] llvmlite==0.36.0=py39h612dafd_4 -> libstdcxx-ng[version='>=7.3.0'] readline==8.1=h27cfd23_0 -> ncurses[version='>=6.2,<7.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0'] libtiff==4.1.0=h2733197_1 -> zstd[version='>=1.4'] -> libstdcxx-ng[version='>=7.5.0|>=9.3.0'] libxml2==2.9.10=hb55368b_3 -> icu[version='>=58.2,<59.0a0'] -> libstdcxx-ng[version='7.2.0.*|>=7.3.0|>=7.2.0|>=4.9'] ffmpeg==4.3=hf484d3e_0 -> gmp[version='>=6.1.2'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.5.0|>=4.9|>=9.3.0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> cudatoolkit[version='>=11.1,<11.2'] -> libstdcxx-ng[version='>=4.9|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0'] cudatoolkit==11.1.1=h6406543_8 -> libstdcxx-ng[version='>=9.3.0'] qt==5.9.7=h5867ecd_1 -> libstdcxx-ng[version='>=7.3.0'] pillow==8.1.1=py39he98fc37_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=9.3.0|>=7.5.0'] pyqt==5.9.2=py39h2531618_6 -> libstdcxx-ng[version='>=7.3.0'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] sqlite==3.33.0=h62c20be_0 -> ncurses[version='>=6.2,<7.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0'] sip==4.19.13=py39h2531618_0 -> libstdcxx-ng[version='>=7.3.0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] docker-pycreds==0.4.0=py_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] torchvision==0.9.0=py39_cu111 -> cudatoolkit[version='>=11.1,<11.2'] -> libstdcxx-ng[version='>=4.9|>=7.3.0|>=9.3.0|>=7.5.0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] expat==2.2.10=he6710b0_2 -> libstdcxx-ng[version='>=7.3.0'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] python-editor==1.0.4=py_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] python==3.9.2=hdb3f193_0 -> libstdcxx-ng[version='>=7.3.0'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] libffi==3.3=he6710b0_2 -> libstdcxx-ng[version='>=7.3.0'] dbus==1.13.18=hb2f20db_0 -> expat[version='>=2.2.10,<3.0a0'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] flask==1.1.2=pyh9f0ad1d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] python_abi==3.9=1_cp39 -> python=3.9 -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] databricks-cli==0.9.1=py_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] _openmp_mutex==4.5=1_llvm -> llvm-openmp[version='>=9.0.1'] -> libstdcxx-ng[version='>=7.3.0'] libtiff==4.1.0=h2733197_1 -> libstdcxx-ng[version='>=7.3.0'] gst-plugins-base==1.14.0=h8213a91_2 -> glib[version='>=2.66.1,<3.0a0'] -> libstdcxx-ng[version='>=7.5.0|>=9.3.0'] qt==5.9.7=h5867ecd_1 -> expat[version='>=2.2.6,<3.0a0'] -> libstdcxx-ng[version='7.2.0.*|>=4.9|>=7.2.0|>=9.3.0|>=7.5.0'] lz4-c==1.9.3=h9c3ff4c_0 -> libstdcxx-ng[version='>=9.3.0'] gst-plugins-base==1.14.0=h8213a91_2 -> libstdcxx-ng[version='>=7.3.0'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] cffi==1.14.5=py39he32792d_0 -> libffi[version='>=3.3,<3.4.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] click==7.1.2=py_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] glib==2.67.4=h36276a3_1 -> libstdcxx-ng[version='>=7.3.0'] pandas==1.2.3=py39hde0f152_0 -> libstdcxx-ng[version='>=9.3.0'] docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] icu==58.2=he6710b0_3 -> libstdcxx-ng[version='>=7.3.0'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.5.0|>=9.3.0'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] querystring_parser==1.2.4=py_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] itsdangerous==1.1.0=py_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] mlflow==1.2.0=py_1 -> numpy -> libstdcxx-ng[version='7.2.0.*|>=4.9|>=7.3.0|>=7.2.0|>=9.3.0|>=7.5.0'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.5.0|>=9.3.0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> libstdcxx-ng[version='>=7.3.0'] zstd==1.4.9=ha95c52a_0 -> libstdcxx-ng[version='>=9.3.0'] torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> libstdcxx-ng[version='>=4.9|>=7.3.0|>=9.3.0|>=7.5.0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> kiwisolver[version='>=1.0.1'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=9.3.0|>=7.5.0|>=4.9'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> llvmlite=0.36 -> libstdcxx-ng[version='>=4.9|>=9.3.0|>=7.5.0'] cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] smmap==3.0.5=pyh44b312d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] requests==2.25.1=pyhd3deb0d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9|>=5.4.0'] mako==1.1.4=pyh44b312d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] idna==2.10=pyh9f0ad1d_0 -> python -> libstdcxx-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] llvmlite==0.36.0=py39h612dafd_4 -> libllvm10[version='>=10.0.1,<10.1.0a0'] -> libstdcxx-ng[version='>=7.5.0|>=9.3.0'] brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> libstdcxx-ng[version='>=7.3.0|>=7.5.0|>=9.3.0']

    Package pycparser conflicts for: mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> pycparser[version='>=2.17'] docker-py==4.4.4=py39hf3d152e_0 -> cffi[version='>=1.10.0'] -> pycparser docker-py==4.4.4=py39hf3d152e_0 -> pycparser[version='>=2.17'] brotlipy==0.7.0=py39h3811e60_1001 -> cffi[version='>=1.0.0'] -> pycparser cffi==1.14.5=py39he32792d_0 -> pycparser cryptography==3.4.6=py39hbca0aa6_0 -> cffi[version='>=1.12'] -> pycparser pycparser==2.20=pyh9f0ad1d_2

    Package libopenblas conflicts for: torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> libopenblas[version='>=0.2.20,<0.2.21.0a0|>=0.3.2,<0.3.3.0a0|>=0.3.3,<1.0a0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> libopenblas[version='>=0.2.20,<0.2.21.0a0|>=0.3.2,<0.3.3.0a0|>=0.3.3,<1.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> libopenblas[version='>=0.3.2,<0.3.3.0a0|>=0.3.3,<1.0a0'] mlflow==1.2.0=py_1 -> numpy -> libopenblas[version='>=0.2.20,<0.2.21.0a0|>=0.3.2,<0.3.3.0a0|>=0.3.3,<1.0a0'] numpy==1.20.1=py39hdbf815f_0 -> libblas[version='>=3.8.0,<4.0a0'] -> libopenblas[version='>=0.3.10,<0.3.11.0a0|>=0.3.12,<0.3.13.0a0|>=0.3.12,<1.0a0|>=0.3.10,<1.0a0|>=0.3.9,<0.3.10.0a0|>=0.3.9,<1.0a0|>=0.3.8,<0.3.9.0a0|>=0.3.8,<1.0a0|>=0.3.7,<0.3.8.0a0|>=0.3.7,<1.0a0|>=0.3.6,<0.3.7.0a0|>=0.3.6,<1.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> numpy[version='>=1.19'] -> libopenblas[version='>=0.3.3,<1.0a0'] pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> libopenblas[version='>=0.3.3,<1.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] -> libopenblas[version='>=0.3.3,<1.0a0']

    Package libgcc-ng conflicts for: libgcc-ng==9.3.0=h2828fa1_18 readline==8.1=h27cfd23_0 -> ncurses[version='>=6.2,<7.0a0'] -> libgcc-ng[version='>=7.5.0'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] libuuid==1.0.3=h1bed415_2 -> libgcc-ng[version='>=7.2.0'] pycparser==2.20=pyh9f0ad1d_2 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] libedit==3.1.20191231=h14c3975_1 -> libgcc-ng[version='>=7.3.0'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.5.0|>=9.3.0'] python==3.9.2=hdb3f193_0 -> libffi[version='>=3.3,<3.4.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.5.0|>=9.3.0|>=7.2.0|>=4.9'] docker-py==4.4.4=py39hf3d152e_0 -> cffi[version='>=1.10.0'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] libedit==3.1.20191231=h14c3975_1 -> ncurses[version='>=6.2,<7.0a0'] -> libgcc-ng[version='>=7.5.0'] gnutls==3.6.13=h85f3911_1 -> nettle[version='>=3.4.1'] -> libgcc-ng[version='>=4.9|>=7.3.0|>=9.3.0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> cryptography[version='>=3.2'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=7.5.0|>=9.3.0|>=4.9'] libxml2==2.9.10=hb55368b_3 -> libgcc-ng[version='>=7.3.0'] pillow==8.1.1=py39he98fc37_0 -> libgcc-ng[version='>=7.3.0'] lame==3.100=h7f98852_1001 -> libgcc-ng[version='>=9.3.0'] sqlalchemy==1.4.0=py39h3811e60_0 -> libgcc-ng[version='>=9.3.0'] gstreamer==1.14.0=h28cd5cc_2 -> glib[version='>=2.66.1,<3.0a0'] -> libgcc-ng[version='>=7.5.0|>=9.3.0'] glib==2.67.4=h36276a3_1 -> libgcc-ng[version='>=7.3.0'] zstd==1.4.9=ha95c52a_0 -> lz4-c[version='>=1.9.3,<1.9.4.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.3.0|>=7.5.0|>=7.2.0|>=4.9'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.5.0|>=9.3.0'] fontconfig==2.13.1=h6c09931_0 -> freetype[version='>=2.10.4,<3.0a0'] -> libgcc-ng[version='>=7.2.0|>=7.5.0|>=9.3.0'] openh264==2.1.1=h780b84a_0 -> zlib[version='>=1.2.11,<1.3.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.3.0|>=7.2.0|>=7.5.0|>=4.9'] olefile==0.46=pyh9f0ad1d_1 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] jinja2==2.11.3=pyh44b312d_0 -> markupsafe[version='>=0.23'] -> libgcc-ng[version='7.2.0.*|>=4.9|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0'] gst-plugins-base==1.14.0=h8213a91_2 -> glib[version='>=2.66.1,<3.0a0'] -> libgcc-ng[version='7.2.0.*|>=4.9|>=7.2.0|>=7.5.0|>=9.3.0'] requests==2.25.1=pyhd3deb0d_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] bzip2==1.0.8=h7f98852_4 -> libgcc-ng[version='>=9.3.0'] sqlite==3.33.0=h62c20be_0 -> libgcc-ng[version='>=7.3.0'] gstreamer==1.14.0=h28cd5cc_2 -> libgcc-ng[version='>=7.3.0'] brotlipy==0.7.0=py39h3811e60_1001 -> cffi[version='>=1.0.0'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=7.5.0|>=4.9'] libffi==3.3=he6710b0_2 -> libgcc-ng[version='>=7.3.0'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] pcre==8.44=he6710b0_0 -> libgcc-ng[version='>=7.3.0'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] libllvm10==10.0.1=hbcb73fb_5 -> libgcc-ng[version='>=7.3.0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] dbus==1.13.18=hb2f20db_0 -> libgcc-ng[version='>=7.3.0'] gnutls==3.6.13=h85f3911_1 -> libgcc-ng[version='>=7.5.0'] tk==8.6.10=hbc83047_0 -> libgcc-ng[version='>=7.3.0'] dbus==1.13.18=hb2f20db_0 -> expat[version='>=2.2.10,<3.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=9.3.0|>=7.5.0|>=4.9'] libxcb==1.14=h7b6447c_0 -> libgcc-ng[version='>=7.3.0'] libpng==1.6.37=h21135ba_2 -> libgcc-ng[version='>=7.5.0'] numpy==1.20.1=py39hdbf815f_0 -> libgcc-ng[version='>=9.3.0'] cryptography==3.4.6=py39hbca0aa6_0 -> cffi[version='>=1.12'] -> libgcc-ng[version='>=7.3.0|>=9.3.0|>=7.5.0'] gst-plugins-base==1.14.0=h8213a91_2 -> libgcc-ng[version='>=7.3.0'] tk==8.6.10=hbc83047_0 -> zlib[version='>=1.2.11,<1.3.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.5.0|>=4.9'] simplejson==3.17.2=py39h3811e60_2 -> libgcc-ng[version='>=9.3.0'] blas==2.108=mkl -> libgcc-ng[version='>=9.3.0'] protobuf==3.15.6=py39he80948d_0 -> libgcc-ng[version='>=9.3.0'] sqlite==3.33.0=h62c20be_0 -> libedit[version='>=3.1.20191231,<3.2.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.5.0|>=7.2.0|>=4.9'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] torchvision==0.9.0=py39_cu111 -> cudatoolkit[version='>=11.1,<11.2'] -> libgcc-ng[version='7.2.0.*|>=7.3.0|>=9.3.0|>=7.5.0|>=7.2.0|>=4.9'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] kiwisolver==1.3.1=py39h2531618_0 -> libgcc-ng[version='>=7.3.0'] ncurses==6.2=he6710b0_1 -> libgcc-ng[version='>=7.3.0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] gorilla==0.3.0=py_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.2.0|>=7.5.0|>=9.3.0'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] lz4-c==1.9.3=h9c3ff4c_0 -> libgcc-ng[version='>=9.3.0'] tornado==6.1=py39h27cfd23_0 -> libgcc-ng[version='>=7.3.0'] xz==5.2.5=h7b6447c_0 -> libgcc-ng[version='>=7.3.0'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] libtiff==4.1.0=h2733197_1 -> jpeg[version='>=9b,<10a'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.5.0|>=4.9|>=9.3.0'] openh264==2.1.1=h780b84a_0 -> libgcc-ng[version='>=9.3.0'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] python==3.9.2=hdb3f193_0 -> libgcc-ng[version='>=7.3.0'] markupsafe==1.1.1=py39h3811e60_3 -> libgcc-ng[version='>=9.3.0'] mlflow==1.2.0=py_1 -> numpy -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] llvmlite==0.36.0=py39h612dafd_4 -> libgcc-ng[version='>=7.3.0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] querystring_parser==1.2.4=py_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] lcms2==2.11=h396b838_0 -> jpeg[version='>=9b,<10a'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.5.0|>=9.3.0'] ninja==1.10.2=h4bd325d_0 -> libgcc-ng[version='>=9.3.0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> libgcc-ng[version='>=7.2.0|>=7.3.0|>=7.5.0|>=9.3.0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> libgcc-ng[version='>=7.3.0'] libxml2==2.9.10=hb55368b_3 -> icu[version='>=58.2,<59.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=4.9|>=7.5.0'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.5.0|>=9.3.0'] cffi==1.14.5=py39he32792d_0 -> libffi[version='>=3.3,<3.4.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0'] libiconv==1.16=h516909a_0 -> libgcc-ng[version='>=7.5.0'] cffi==1.14.5=py39he32792d_0 -> libgcc-ng[version='>=9.3.0'] fontconfig==2.13.1=h6c09931_0 -> libgcc-ng[version='>=7.3.0'] qt==5.9.7=h5867ecd_1 -> dbus[version='>=1.13.2,<2.0a0'] -> libgcc-ng[version='7.2.0.*|>=4.9|>=7.2.0|>=9.3.0|>=7.5.0'] sip==4.19.13=py39h2531618_0 -> libgcc-ng[version='>=7.3.0'] icu==58.2=he6710b0_3 -> libgcc-ng[version='>=7.3.0'] zstd==1.4.9=ha95c52a_0 -> libgcc-ng[version='>=9.3.0'] nettle==3.6=he412f7d_0 -> libgcc-ng[version='>=7.5.0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] ffmpeg==4.3=hf484d3e_0 -> bzip2[version='>=1.0.8,<2.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.5.0|>=9.3.0|>=7.2.0|>=4.9'] docker-pycreds==0.4.0=py_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> llvmlite=0.36 -> libgcc-ng[version='>=4.9|>=7.2.0|>=9.3.0|>=7.5.0'] expat==2.2.10=he6710b0_2 -> libgcc-ng[version='>=7.3.0'] libpng==1.6.37=h21135ba_2 -> zlib[version='>=1.2.11,<1.3.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.3.0|>=7.2.0|>=4.9'] gmp==6.2.1=h58526e2_0 -> libgcc-ng[version='>=7.5.0'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> libgcc-ng[version='>=7.3.0'] lcms2==2.11=h396b838_0 -> libgcc-ng[version='>=7.3.0'] python-editor==1.0.4=py_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] libprotobuf==3.15.6=h780b84a_0 -> zlib[version='>=1.2.11,<1.3.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.3.0|>=7.2.0|>=7.5.0|>=4.9'] click==7.1.2=py_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] freetype==2.10.4=h0708190_1 -> libgcc-ng[version='>=9.3.0'] urllib3==1.26.4=pyhd8ed1ab_0 -> brotlipy[version='>=0.6.0'] -> libgcc-ng[version='7.2.0.*|>=4.9|>=7.3.0|>=9.3.0|>=7.5.0|>=7.2.0'] torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] cudatoolkit==11.1.1=h6406543_8 -> libgcc-ng[version='>=9.3.0'] libllvm10==10.0.1=hbcb73fb_5 -> zlib[version='>=1.2.11,<1.3.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.5.0|>=4.9'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] pandas==1.2.3=py39hde0f152_0 -> libgcc-ng[version='>=9.3.0'] flask==1.1.2=pyh9f0ad1d_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] python_abi==3.9=1_cp39 -> python=3.9 -> libgcc-ng[version='>=7.3.0|>=7.5.0|>=9.3.0'] databricks-cli==0.9.1=py_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] itsdangerous==1.1.0=py_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] matplotlib-base==3.3.4=py39h62a2d02_0 -> freetype[version='>=2.10.4,<3.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.5.0|>=9.3.0|>=4.9'] zlib==1.2.11=h7b6447c_3 -> libgcc-ng[version='>=7.3.0'] pyyaml==5.4.1=py39h3811e60_0 -> libgcc-ng[version='>=9.3.0'] libprotobuf==3.15.6=h780b84a_0 -> libgcc-ng[version='>=9.3.0'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> libgcc-ng[version='>=4.9|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0'] pyqt==5.9.2=py39h2531618_6 -> libgcc-ng[version='>=7.3.0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] ffmpeg==4.3=hf484d3e_0 -> libgcc-ng[version='>=7.3.0'] openssl==1.1.1j=h7f98852_0 -> libgcc-ng[version='>=9.3.0'] jpeg==9b=h024ee3a_2 -> libgcc-ng[version='7.2.0.*|>=7.2.0'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9|>=5.4.0'] numpy==1.20.1=py39hdbf815f_0 -> libblas[version='>=3.8.0,<4.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0'] qt==5.9.7=h5867ecd_1 -> libgcc-ng[version='>=7.3.0'] smmap==3.0.5=pyh44b312d_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] llvmlite==0.36.0=py39h612dafd_4 -> libllvm10[version='>=10.0.1,<10.1.0a0'] -> libgcc-ng[version='>=7.5.0|>=9.3.0'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] yaml==0.2.5=h7b6447c_0 -> libgcc-ng[version='>=7.3.0'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] _openmp_mutex==4.5=1_llvm -> llvm-openmp[version='>=9.0.1'] -> libgcc-ng[version='>=7.3.0'] idna==2.10=pyh9f0ad1d_0 -> python -> libgcc-ng[version='7.2.0.*|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0|>=4.9'] brotlipy==0.7.0=py39h3811e60_1001 -> libgcc-ng[version='>=9.3.0'] libtiff==4.1.0=h2733197_1 -> libgcc-ng[version='>=7.3.0'] freetype==2.10.4=h0708190_1 -> libpng[version='>=1.6.37,<1.7.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.3.0|>=7.5.0|>=7.2.0|>=4.9'] pillow==8.1.1=py39he98fc37_0 -> freetype[version='>=2.10.4,<3.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.5.0|>=9.3.0|>=7.2.0|>=4.9'] readline==8.1=h27cfd23_0 -> libgcc-ng[version='>=7.3.0'] pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> libgcc-ng[version='>=7.3.0|>=7.5.0'] glib==2.67.4=h36276a3_1 -> libffi[version='>=3.3,<3.4.0a0'] -> libgcc-ng[version='7.2.0.*|>=7.5.0|>=7.2.0|>=4.9'] mako==1.1.4=pyh44b312d_0 -> markupsafe[version='>=0.9.2'] -> libgcc-ng[version='7.2.0.*|>=4.9|>=7.2.0|>=7.3.0|>=9.3.0|>=7.5.0']

    Package typing_extensions conflicts for: kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> typing_extensions torchaudio==0.8.0=py39 -> pytorch==1.8.0 -> typing_extensions mlflow==1.2.0=py_1 -> gitpython[version='>=2.1.0'] -> typing_extensions typing_extensions==3.7.4.3=py_0 torchvision==0.9.0=py39_cu111 -> pytorch==1.8.0 -> typing_extensions pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> typing_extensions

    Package libxcb conflicts for: qt==5.9.7=h5867ecd_1 -> gst-plugins-base[version='>=1.14.0,<1.15.0a0'] -> libxcb[version='>=1.14,<2.0a0'] qt==5.9.7=h5867ecd_1 -> libxcb[version='>=1.13,<2.0a0'] pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> libxcb[version='>=1.12,<2.0a0|>=1.13,<2.0a0'] libxcb==1.14=h7b6447c_0 gst-plugins-base==1.14.0=h8213a91_2 -> libxcb[version='>=1.14,<2.0a0']

    Package ld_impl_linux-64 conflicts for: querystring_parser==1.2.4=py_0 -> python -> ld_impl_linux-64[version='>=2.34'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> ld_impl_linux-64[version='>=2.34'] cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 kornia==0.3.0=pyh9f0ad1d_0 -> python -> ld_impl_linux-64[version='>=2.34'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> ld_impl_linux-64[version='>=2.34'] docker-pycreds==0.4.0=py_0 -> python -> ld_impl_linux-64[version='>=2.34'] click==7.1.2=py_0 -> python -> ld_impl_linux-64[version='>=2.34'] cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> ld_impl_linux-64[version='>=2.34'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> ld_impl_linux-64[version='>=2.34'] matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> ld_impl_linux-64[version='>=2.34'] llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 flask==1.1.2=pyh9f0ad1d_0 -> python -> ld_impl_linux-64[version='>=2.34'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 ld_impl_linux-64==2.33.1=h53a641e_7 werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> ld_impl_linux-64[version='>=2.34'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 itsdangerous==1.1.0=py_0 -> python -> ld_impl_linux-64[version='>=2.34'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 wheel==0.36.2=pyhd3eb1b0_0 -> python -> ld_impl_linux-64[version='>=2.34'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> ld_impl_linux-64[version='>=2.34'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> ld_impl_linux-64[version='>=2.34'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 smmap==3.0.5=pyh44b312d_0 -> python -> ld_impl_linux-64[version='>=2.34'] python-editor==1.0.4=py_0 -> python -> ld_impl_linux-64[version='>=2.34'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> ld_impl_linux-64[version='>=2.34'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> ld_impl_linux-64[version='>=2.34'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 jinja2==2.11.3=pyh44b312d_0 -> python -> ld_impl_linux-64[version='>=2.34'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 pycparser==2.20=pyh9f0ad1d_2 -> python -> ld_impl_linux-64[version='>=2.34'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> ld_impl_linux-64[version='>=2.34'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> ld_impl_linux-64[version='>=2.34'] python_abi==3.9=1_cp39 -> python=3.9 -> ld_impl_linux-64 olefile==0.46=pyh9f0ad1d_1 -> python -> ld_impl_linux-64[version='>=2.34'] requests==2.25.1=pyhd3deb0d_0 -> python -> ld_impl_linux-64[version='>=2.34'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 mako==1.1.4=pyh44b312d_0 -> python -> ld_impl_linux-64[version='>=2.34'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> ld_impl_linux-64[version='>=2.34'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> ld_impl_linux-64[version='>=2.34'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 gorilla==0.3.0=py_0 -> python -> ld_impl_linux-64[version='>=2.34'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 idna==2.10=pyh9f0ad1d_0 -> python -> ld_impl_linux-64[version='>=2.34'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 python==3.9.2=hdb3f193_0 -> ld_impl_linux-64 urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> ld_impl_linux-64[version='>=2.34'] torchvision==0.9.0=py39_cu111 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> ld_impl_linux-64[version='>=2.34'] databricks-cli==0.9.1=py_0 -> python -> ld_impl_linux-64[version='>=2.34'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> ld_impl_linux-64[version='>=2.34'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> ld_impl_linux-64[version='>=2.34'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> ld_impl_linux-64 python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> ld_impl_linux-64[version='>=2.34']

    Package pillow conflicts for: torchvision==0.9.0=py39_cu111 -> pillow[version='>=4.1.1'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> pillow[version='>=6.2.0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> pillow[version='>=6.2.0'] pillow==8.1.1=py39he98fc37_0

    Package libtiff conflicts for: pillow==8.1.1=py39he98fc37_0 -> lcms2[version='>=2.11,<3.0a0'] -> libtiff[version='>=4.2.0,<5.0a0'] lcms2==2.11=h396b838_0 -> libtiff[version='>=4.1.0,<5.0a0'] torchvision==0.9.0=py39_cu111 -> pillow[version='>=4.1.1'] -> libtiff[version='4.0.*|>=4.0.10,<5.0a0|>=4.1.0,<5.0a0|>=4.0.9,<5.0a0|>=4.0.8,<5.0a0|>=4.2.0,<5.0a0|>=4.0.8,<4.0.10|>=4.0.3,<4.0.8'] libtiff==4.1.0=h2733197_1 matplotlib-base==3.3.4=py39h62a2d02_0 -> pillow[version='>=6.2.0'] -> libtiff[version='>=4.0.10,<5.0a0|>=4.1.0,<5.0a0|>=4.2.0,<5.0a0'] pillow==8.1.1=py39he98fc37_0 -> libtiff[version='>=4.1.0,<5.0a0']

    Package libffi conflicts for: cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0'] requests==2.25.1=pyhd3deb0d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] docker-py==4.4.4=py39hf3d152e_0 -> cffi[version='>=1.10.0'] -> libffi[version='<3.3.0.a0|>=3.2.1,<3.3.0a0|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3a0'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] dbus==1.13.18=hb2f20db_0 -> glib -> libffi[version='<3.3.0.a0|>=3.0.0|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] mako==1.1.4=pyh44b312d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] docker-pycreds==0.4.0=py_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] gorilla==0.3.0=py_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] brotlipy==0.7.0=py39h3811e60_1001 -> cffi[version='>=1.0.0'] -> libffi[version='<3.3.0.a0|>=3.2.1,<3.3.0a0|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3a0'] python-editor==1.0.4=py_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] glib==2.67.4=h36276a3_1 -> libffi[version='>=3.3,<3.4.0a0'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] qt==5.9.7=h5867ecd_1 -> glib[version='>=2.56.2,<2.57.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.2.1,<4.0a0|>=3.2.1,<3.3a0|>=3.3,<3.4.0a0'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] smmap==3.0.5=pyh44b312d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] click==7.1.2=py_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] pycparser==2.20=pyh9f0ad1d_2 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] jinja2==2.11.3=pyh44b312d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] flask==1.1.2=pyh9f0ad1d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] gstreamer==1.14.0=h28cd5cc_2 -> glib[version='>=2.66.1,<3.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] databricks-cli==0.9.1=py_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] itsdangerous==1.1.0=py_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] gst-plugins-base==1.14.0=h8213a91_2 -> glib[version='>=2.66.1,<3.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0|>=3.2.1,<4.0a0|>=3.2.1,<3.3a0'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] python==3.9.2=hdb3f193_0 -> libffi[version='>=3.3,<3.4.0a0'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] cffi==1.14.5=py39he32792d_0 -> libffi[version='>=3.3,<3.4.0a0'] torchvision==0.9.0=py39_cu111 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] python_abi==3.9=1_cp39 -> python=3.9 -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] idna==2.10=pyh9f0ad1d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] cryptography==3.4.6=py39hbca0aa6_0 -> cffi[version='>=1.12'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3a0'] matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] querystring_parser==1.2.4=py_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] libffi==3.3=he6710b0_2 chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> libffi[version='>=3.2.1,<3.3.0a0|>=3.3,<3.4.0a0'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] olefile==0.46=pyh9f0ad1d_1 -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0|>=3.3,<3.4.0a0|>=3.2.1,<3.3.0a0|>=3.2.1,<3.3a0']

    Package xz conflicts for: libxml2==2.9.10=hb55368b_3 -> xz[version='>=5.2.5,<6.0a0'] python_abi==3.9=1_cp39 -> python=3.9 -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] databricks-cli==0.9.1=py_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] olefile==0.46=pyh9f0ad1d_1 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] python==3.9.2=hdb3f193_0 -> xz[version='>=5.2.5,<6.0a0'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> xz[version='5.2.*|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] pycparser==2.20=pyh9f0ad1d_2 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] jinja2==2.11.3=pyh44b312d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] xz==5.2.5=h7b6447c_0 docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] torchvision==0.9.0=py39_cu111 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] qt==5.9.7=h5867ecd_1 -> gst-plugins-base[version='>=1.14.0,<1.15.0a0'] -> xz[version='>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<5.3.0a0|>=5.2.5,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<5.3.0a0'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] docker-pycreds==0.4.0=py_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] gst-plugins-base==1.14.0=h8213a91_2 -> gstreamer[version='>=1.14.0,<2.0a0'] -> xz[version='>=5.2.3,<6.0a0|>=5.2.4,<5.3.0a0'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] python-editor==1.0.4=py_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] requests==2.25.1=pyhd3deb0d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> xz[version='5.2.*|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] idna==2.10=pyh9f0ad1d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] pillow==8.1.1=py39he98fc37_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> xz[version='>=5.2.4,<5.3.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] fontconfig==2.13.1=h6c09931_0 -> libxml2[version='>=2.9.10,<2.10.0a0'] -> xz[version='>=5.2.4,<5.3.0a0|>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] libtiff==4.1.0=h2733197_1 -> xz[version='>=5.2.5,<6.0a0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> xz[version='5.2.*|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] querystring_parser==1.2.4=py_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] itsdangerous==1.1.0=py_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] flask==1.1.2=pyh9f0ad1d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] libtiff==4.1.0=h2733197_1 -> zstd[version='>=1.4'] -> xz[version='>=5.2.4,<5.3.0a0|>=5.2.5,<5.3.0a0'] smmap==3.0.5=pyh44b312d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] mako==1.1.4=pyh44b312d_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> xz[version='5.2.*|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] lcms2==2.11=h396b838_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> xz[version='>=5.2.4,<5.3.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] gorilla==0.3.0=py_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0'] zstd==1.4.9=ha95c52a_0 -> xz[version='>=5.2.5,<5.3.0a0'] click==7.1.2=py_0 -> python -> xz[version='5.0.|5.2.|>=5.2.3,<5.3.0a0|>=5.2.3,<6.0a0|>=5.2.4,<6.0a0|>=5.2.5,<6.0a0|>=5.2.5,<5.3.0a0|>=5.2.4,<5.3.0a0'] llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> xz[version='>=5.2.5,<5.3.0a0|>=5.2.5,<6.0a0']

    Package ca-certificates conflicts for: ffmpeg==4.3=hf484d3e_0 -> gnutls[version='>=3.6.5,<3.7.0a0'] -> ca-certificates qt==5.9.7=h5867ecd_1 -> openssl=1.1 -> ca-certificates olefile==0.46=pyh9f0ad1d_1 -> python -> ca-certificates python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> ca-certificates mako==1.1.4=pyh44b312d_0 -> python -> ca-certificates idna==2.10=pyh9f0ad1d_0 -> python -> ca-certificates jinja2==2.11.3=pyh44b312d_0 -> python -> ca-certificates werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> ca-certificates itsdangerous==1.1.0=py_0 -> python -> ca-certificates packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> ca-certificates pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> ca-certificates querystring_parser==1.2.4=py_0 -> python -> ca-certificates smmap==3.0.5=pyh44b312d_0 -> python -> ca-certificates docker-pycreds==0.4.0=py_0 -> python -> ca-certificates requests==2.25.1=pyhd3deb0d_0 -> python -> ca-certificates pycparser==2.20=pyh9f0ad1d_2 -> python -> ca-certificates openssl==1.1.1j=h7f98852_0 -> ca-certificates databricks-cli==0.9.1=py_0 -> python -> ca-certificates tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> ca-certificates cryptography==3.4.6=py39hbca0aa6_0 -> openssl[version='>=1.1.1j,<1.1.2a'] -> ca-certificates asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> ca-certificates click==7.1.2=py_0 -> python -> ca-certificates gorilla==0.3.0=py_0 -> python -> ca-certificates pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> ca-certificates python-editor==1.0.4=py_0 -> python -> ca-certificates wheel==0.36.2=pyhd3eb1b0_0 -> python -> ca-certificates flask==1.1.2=pyh9f0ad1d_0 -> python -> ca-certificates sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> ca-certificates ca-certificates==2020.12.5=ha878542_0 appdirs==1.4.4=pyh9f0ad1d_0 -> python -> ca-certificates urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> ca-certificates kornia==0.3.0=pyh9f0ad1d_0 -> python -> ca-certificates python==3.9.2=hdb3f193_0 -> openssl[version='>=1.1.1j,<1.1.2a'] -> ca-certificates

    Package tzdata conflicts for: docker-pycreds==0.4.0=py_0 -> python -> tzdata simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> tzdata llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> tzdata querystring_parser==1.2.4=py_0 -> python -> tzdata setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata databricks-cli==0.9.1=py_0 -> python -> tzdata itsdangerous==1.1.0=py_0 -> python -> tzdata python==3.9.2=hdb3f193_0 -> tzdata torchvision==0.9.0=py39_cu111 -> python[version='>=3.9,<3.10.0a0'] -> tzdata pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata click==7.1.2=py_0 -> python -> tzdata pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata appdirs==1.4.4=pyh9f0ad1d_0 -> python -> tzdata flask==1.1.2=pyh9f0ad1d_0 -> python -> tzdata asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> tzdata alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> tzdata docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> tzdata pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> tzdata werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> tzdata jinja2==2.11.3=pyh44b312d_0 -> python -> tzdata markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> tzdata pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> tzdata gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> tzdata python_abi==3.9=1_cp39 -> python=3.9 -> tzdata olefile==0.46=pyh9f0ad1d_1 -> python -> tzdata cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata smmap==3.0.5=pyh44b312d_0 -> python -> tzdata mako==1.1.4=pyh44b312d_0 -> python -> tzdata pycparser==2.20=pyh9f0ad1d_2 -> python -> tzdata pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata requests==2.25.1=pyhd3deb0d_0 -> python -> tzdata pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> tzdata torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> tzdata websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> tzdata urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> tzdata kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata tzdata==2020f=h52ac0ba_0 entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> tzdata typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> tzdata matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata wheel==0.36.2=pyhd3eb1b0_0 -> python -> tzdata six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> tzdata tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> tzdata pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> tzdata chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> tzdata sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata gorilla==0.3.0=py_0 -> python -> tzdata packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> tzdata pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> tzdata kornia==0.3.0=pyh9f0ad1d_0 -> python -> tzdata tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> tzdata gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> tzdata sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> tzdata configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> tzdata python-editor==1.0.4=py_0 -> python -> tzdata python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> tzdata cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> tzdata cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> tzdata gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> tzdata idna==2.10=pyh9f0ad1d_0 -> python -> tzdata

    Package ncurses conflicts for: jinja2==2.11.3=pyh44b312d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] python-editor==1.0.4=py_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] gorilla==0.3.0=py_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] databricks-cli==0.9.1=py_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] smmap==3.0.5=pyh44b312d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] mako==1.1.4=pyh44b312d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] python==3.9.2=hdb3f193_0 -> ncurses[version='>=6.2,<7.0a0'] pycparser==2.20=pyh9f0ad1d_2 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] sqlite==3.33.0=h62c20be_0 -> libedit[version='>=3.1.20191231,<3.2.0a0'] -> ncurses[version='>=6.1,<6.3.0a0|>=6.2,<6.3.0a0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] flask==1.1.2=pyh9f0ad1d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] itsdangerous==1.1.0=py_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] click==7.1.2=py_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] idna==2.10=pyh9f0ad1d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] olefile==0.46=pyh9f0ad1d_1 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] requests==2.25.1=pyhd3deb0d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] querystring_parser==1.2.4=py_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] python==3.9.2=hdb3f193_0 -> readline[version='>=8.0,<9.0a0'] -> ncurses[version='>=6.1,<6.3.0a0|>=6.1,<7.0a0|>=6.2,<6.3.0a0'] qt==5.9.7=h5867ecd_1 -> sqlite[version='>=3.25.3,<4.0a0'] -> ncurses[version='>=6.1,<6.3.0a0|>=6.2,<6.3.0a0|>=6.2,<7.0a0'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] docker-pycreds==0.4.0=py_0 -> python -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] python_abi==3.9=1_cp39 -> python=3.9 -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] readline==8.1=h27cfd23_0 -> ncurses[version='>=6.2,<7.0a0'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] sqlite==3.33.0=h62c20be_0 -> ncurses[version='>=6.2,<7.0a0'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> ncurses[version='5.9.|5.9|6.0.|>=6.0,<7.0a0|>=6.1,<7.0a0|>=6.2,<7.0a0|>=6.2,<6.3.0a0|>=6.1,<6.3.0a0'] ncurses==6.2=he6710b0_1 libedit==3.1.20191231=h14c3975_1 -> ncurses[version='>=6.2,<7.0a0'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0'] torchvision==0.9.0=py39_cu111 -> python[version='>=3.9,<3.10.0a0'] -> ncurses[version='>=6.2,<6.3.0a0|>=6.2,<7.0a0']

    Package blas conflicts for: matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] -> blas[version='*|1.0',build='openblas|mkl'] blas-devel==3.9.0=8_mkl -> mkl-devel -> blas=[build=mkl] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> blas[version='*|1.0|1.0|1.1',build='openblas|openblas|openblas|mkl'] blas==2.108=mkl pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> numpy[version='>=1.19'] -> blas[version='*|1.0',build='openblas|mkl'] mlflow==1.2.0=py_1 -> numpy -> blas[version='||1.0|1.0|1.1',build='openblas|openblas|openblas|mkl|mkl'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> blas[version='||1.0|1.0|1.1',build='openblas|openblas|openblas|mkl|mkl'] kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> blas[version='*|1.0',build=mkl] pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> blas[version='*|1.0',build='openblas|mkl'] torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> blas[version='||1.0|1.0|1.1',build='openblas|openblas|openblas|mkl|mkl']

    Package gnutls conflicts for: torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> gnutls[version='>=3.6.13,<3.7.0a0|>=3.6.5,<3.7.0a0'] gnutls==3.6.13=h85f3911_1 ffmpeg==4.3=hf484d3e_0 -> gnutls[version='>=3.6.5,<3.7.0a0']

    Package openssl conflicts for: gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] smmap==3.0.5=pyh44b312d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> cryptography[version='>=3.2'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1f,<1.1.2a'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='1.0.|1.1.|>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] jinja2==2.11.3=pyh44b312d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] python==3.9.2=hdb3f193_0 -> openssl[version='>=1.1.1j,<1.1.2a'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] idna==2.10=pyh9f0ad1d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] itsdangerous==1.1.0=py_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> openssl[version='>=1.1.1d,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1k,<1.1.2a'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1k,<1.1.2a'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] cryptography==3.4.6=py39hbca0aa6_0 -> openssl[version='>=1.1.1j,<1.1.2a'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] querystring_parser==1.2.4=py_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] docker-py==4.4.4=py39hf3d152e_0 -> cryptography[version='>=1.9'] -> openssl[version='1.0.*|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.0.2n,<1.0.3a|>=1.0.2m,<1.0.3a|>=1.1.1k,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a'] brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] olefile==0.46=pyh9f0ad1d_1 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] docker-pycreds==0.4.0=py_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] requests==2.25.1=pyhd3deb0d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] click==7.1.2=py_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] pycparser==2.20=pyh9f0ad1d_2 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] flask==1.1.2=pyh9f0ad1d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] urllib3==1.26.4=pyhd8ed1ab_0 -> cryptography[version='>=1.3.4'] -> openssl[version='1.0.*|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.0.2n,<1.0.3a|>=1.0.2m,<1.0.3a|>=1.1.1k,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1f,<1.1.2a'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] mako==1.1.4=pyh44b312d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] gorilla==0.3.0=py_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] python-editor==1.0.4=py_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] qt==5.9.7=h5867ecd_1 -> openssl=1.1 python_abi==3.9=1_cp39 -> python=3.9 -> openssl[version='>=1.1.1h,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1j,<1.1.2a|>=1.1.1k,<1.1.2a'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] databricks-cli==0.9.1=py_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> openssl[version='1.0.*|>=1.0.2m,<1.0.3a|>=1.0.2n,<1.0.3a|>=1.0.2o,<1.0.3a|>=1.0.2p,<1.0.3a|>=1.1.1,<1.1.2.0a0|>=1.1.1a,<1.1.2a|>=1.1.1b,<1.1.2a|>=1.1.1c,<1.1.2a|>=1.1.1d,<1.1.2a|>=1.1.1e,<1.1.2a|>=1.1.1g,<1.1.2a|>=1.0.2l,<1.0.3a|>=1.1.1j,<1.1.2a|>=1.1.1i,<1.1.2a|>=1.1.1h,<1.1.2a|>=1.1.1f,<1.1.2a|>=1.1.1k,<1.1.2a'] openssl==1.1.1j=h7f98852_0

    Package pip conflicts for: click==7.1.2=py_0 -> python -> pip six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> pip pycparser==2.20=pyh9f0ad1d_2 -> python -> pip querystring_parser==1.2.4=py_0 -> python -> pip jinja2==2.11.3=pyh44b312d_0 -> python -> pip pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> pip python-editor==1.0.4=py_0 -> python -> pip flask==1.1.2=pyh9f0ad1d_0 -> python -> pip torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> pip brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> pip cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> pip pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> pip python==3.9.2=hdb3f193_0 -> pip kornia==0.3.0=pyh9f0ad1d_0 -> python -> pip sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> pip configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> pip kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> pip pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> pip appdirs==1.4.4=pyh9f0ad1d_0 -> python -> pip protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> pip olefile==0.46=pyh9f0ad1d_1 -> python -> pip pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> pip gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> pip requests==2.25.1=pyhd3deb0d_0 -> python -> pip tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> pip matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] -> pip pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> pip pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> pip pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] -> pip packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> pip tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> pip gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> pip mako==1.1.4=pyh44b312d_0 -> python -> pip asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> pip typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> pip smmap==3.0.5=pyh44b312d_0 -> python -> pip python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> pip cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> pip mlflow==1.2.0=py_1 -> pip entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> pip docker-pycreds==0.4.0=py_0 -> python -> pip llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> pip markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> pip python_abi==3.9=1_cp39 -> python=3.9 -> pip werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> pip certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> pip itsdangerous==1.1.0=py_0 -> python -> pip pip==21.0.1=py39h06a4308_0 alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> pip wheel==0.36.2=pyhd3eb1b0_0 -> python -> pip torchvision==0.9.0=py39_cu111 -> python[version='>=3.9,<3.10.0a0'] -> pip cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> pip gorilla==0.3.0=py_0 -> python -> pip cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> pip docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> pip matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> pip websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> pip pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> pip urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> pip simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> pip idna==2.10=pyh9f0ad1d_0 -> python -> pip pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> pip chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> pip gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> pip sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> pip setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> pip databricks-cli==0.9.1=py_0 -> python -> pip sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> pip numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> pip numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> pip

    Package _openmp_mutex conflicts for: kiwisolver==1.3.1=py39h2531618_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] numpy==1.20.1=py39hdbf815f_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] gst-plugins-base==1.14.0=h8213a91_2 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] libprotobuf==3.15.6=h780b84a_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] llvmlite==0.36.0=py39h612dafd_4 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] sip==4.19.13=py39h2531618_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] blas-devel==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] -> _openmp_mutex[version='|>=4.5',build=_llvm] zlib==1.2.11=h7b6447c_3 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] libllvm10==10.0.1=hbcb73fb_5 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] xz==5.2.5=h7b6447c_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] gnutls==3.6.13=h85f3911_1 -> libgcc-ng[version='>=7.5.0'] -> _openmp_mutex[version='>=4.5'] libffi==3.3=he6710b0_2 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] _openmp_mutex==4.5=1_llvm protobuf==3.15.6=py39he80948d_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] ninja==1.10.2=h4bd325d_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] ffmpeg==4.3=hf484d3e_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] lame==3.100=h7f98852_1001 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] yaml==0.2.5=h7b6447c_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] lz4-c==1.9.3=h9c3ff4c_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] sqlite==3.33.0=h62c20be_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] brotlipy==0.7.0=py39h3811e60_1001 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] pcre==8.44=he6710b0_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] readline==8.1=h27cfd23_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] gstreamer==1.14.0=h28cd5cc_2 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] expat==2.2.10=he6710b0_2 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] pillow==8.1.1=py39he98fc37_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] python==3.9.2=hdb3f193_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] matplotlib-base==3.3.4=py39h62a2d02_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] libgcc-ng==9.3.0=h2828fa1_18 -> _openmp_mutex[version='>=4.5'] dbus==1.13.18=hb2f20db_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] libblas==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] -> _openmp_mutex[version='|>=4.5',build=_llvm] openssl==1.1.1j=h7f98852_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] libuuid==1.0.3=h1bed415_2 -> libgcc-ng[version='>=7.2.0'] -> _openmp_mutex[version='>=4.5'] mkl-devel==2020.4=ha770c72_305 -> mkl==2020.4=h726a3e6_304 -> _openmp_mutex[version='|>=4.5',build=_llvm] pandas==1.2.3=py39hde0f152_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] tornado==6.1=py39h27cfd23_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] libedit==3.1.20191231=h14c3975_1 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] libxml2==2.9.10=hb55368b_3 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] lcms2==2.11=h396b838_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] pyqt==5.9.2=py39h2531618_6 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] simplejson==3.17.2=py39h3811e60_2 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] qt==5.9.7=h5867ecd_1 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> _openmp_mutex[version='>=4.5'] fontconfig==2.13.1=h6c09931_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] pyyaml==5.4.1=py39h3811e60_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] jpeg==9b=h024ee3a_2 -> libgcc-ng[version='>=7.2.0'] -> _openmp_mutex[version='>=4.5'] libtiff==4.1.0=h2733197_1 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] nettle==3.6=he412f7d_0 -> libgcc-ng[version='>=7.5.0'] -> _openmp_mutex[version='>=4.5'] torchaudio==0.8.0=py39 -> pytorch==1.8.0 -> _openmp_mutex[version='>=4.5'] blas==2.108=mkl -> _openmp_mutex[version='|>=4.5',build=_llvm] libpng==1.6.37=h21135ba_2 -> libgcc-ng[version='>=7.5.0'] -> _openmp_mutex[version='>=4.5'] libiconv==1.16=h516909a_0 -> libgcc-ng[version='>=7.5.0'] -> _openmp_mutex[version='>=4.5'] glib==2.67.4=h36276a3_1 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] markupsafe==1.1.1=py39h3811e60_3 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] mkl==2020.4=h726a3e6_304 -> _openmp_mutex[version='|>=4.5',build=_llvm] freetype==2.10.4=h0708190_1 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] cffi==1.14.5=py39he32792d_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] gmp==6.2.1=h58526e2_0 -> libgcc-ng[version='>=7.5.0'] -> _openmp_mutex[version='>=4.5'] tk==8.6.10=hbc83047_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] ncurses==6.2=he6710b0_1 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] torchvision==0.9.0=py39_cu111 -> pytorch==1.8.0 -> _openmp_mutex[version='>=4.5'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> _openmp_mutex[version='|>=4.5',build=_llvm] zstd==1.4.9=ha95c52a_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] libxcb==1.14=h7b6447c_0 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] openh264==2.1.1=h780b84a_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] icu==58.2=he6710b0_3 -> libgcc-ng[version='>=7.3.0'] -> _openmp_mutex[version='>=4.5'] cudatoolkit==11.1.1=h6406543_8 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] sqlalchemy==1.4.0=py39h3811e60_0 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5'] bzip2==1.0.8=h7f98852_4 -> libgcc-ng[version='>=9.3.0'] -> _openmp_mutex[version='>=4.5']

    Package python conflicts for: gitdb==4.0.5=pyhd8ed1ab_1 -> smmap[version='>=3.0.1,<4'] -> python brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] setuptools==52.0.0=py39h06a4308_0 -> certifi[version='>=2016.9.26'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|3.4.'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] urllib3==1.26.4=pyhd8ed1ab_0 -> brotlipy[version='>=0.6.0'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.9,<3.10.0a0|>=3.5,<3.6.0a0|3.4.|>=2.7'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] protobuf==3.15.6=py39he80948d_0 -> python_abi=3.9[build=*_cp39] -> python[version='2.7.|3.5.|3.6.|3.9.|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|3.4.*'] databricks-cli==0.9.1=py_0 -> click[version='>=6.7'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|>=3.6|>=3.8,<3.9.0a0|3.4.|>=3.9,<3.10.0a0|=2.7|>=3.5'] chardet==4.0.0=py39hf3d152e_1 -> python_abi=3.9[build=*_cp39] -> python=3.9 gstreamer==1.14.0=h28cd5cc_2 -> glib[version='>=2.66.1,<3.0a0'] -> python[version='*|>=2.7'] dbus==1.13.18=hb2f20db_0 -> glib -> python[version='*|>=2.7|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=2.7,<2.8.0a0'] flask==1.1.2=pyh9f0ad1d_0 -> python configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] cycler==0.10.0=py39h06a4308_0 -> six -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|3.4.'] cffi==1.14.5=py39he32792d_0 -> pycparser -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|3.4.|3.9.*'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] certifi==2020.12.5=py39hf3d152e_1 -> python_abi=3.9[build=*_cp39] -> python=3.9 alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] numpy==1.20.1=py39hdbf815f_0 -> python_abi=3.9[build=*_cp39] -> python=3.9 packaging==20.9=pyh44b312d_0 -> pyparsing[version='>=2.0.2'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|3.4.'] pysocks==1.7.1=py39hf3d152e_3 -> python_abi=3.9[build=*_cp39] -> python=3.9 qt==5.9.7=h5867ecd_1 -> glib[version='>=2.56.2,<3.0a0'] -> python[version='*|>=2.7|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=2.7,<2.8.0a0'] olefile==0.46=pyh9f0ad1d_1 -> python docker-pycreds==0.4.0=py_0 -> python docker-py==4.4.4=py39hf3d152e_0 -> appdirs[version='>=1.4.3'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|>=3.7,<3.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|3.7.10|3.6.12|3.7.9|3.6.12|3.6.9|3.6.9|3.6.9|3.6.9|3.4.|>=2.7|3.9.*',build='1_73_pypy|2_73_pypy|3_73_pypy|5_73_pypy|5_73_pypy|0_73_pypy|4_73_pypy|0_73_pypy'] gst-plugins-base==1.14.0=h8213a91_2 -> glib[version='>=2.66.1,<3.0a0'] -> python[version='*|>=2.7'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.5,<3.6.0a0|3.4.|3.9.*'] appdirs==1.4.4=pyh9f0ad1d_0 -> python entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] querystring_parser==1.2.4=py_0 -> requests -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|3.4.|>=3.9,<3.10.0a0'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] gunicorn==20.0.4=py39hf3d152e_3 -> python_abi=3.9[build=*_cp39] -> python[version='2.7.|3.5.|3.6.|3.9.|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|3.4.*'] pyyaml==5.4.1=py39h3811e60_0 -> python_abi=3.9[build=*_cp39] -> python=3.9 markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|3.4.|3.9.*'] jinja2==2.11.3=pyh44b312d_0 -> markupsafe[version='>=0.23'] -> python[version='2.7.|3.4.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.5,<3.6.0a0|>=3.9,<3.10.0a0'] databricks-cli==0.9.1=py_0 -> python torchvision==0.9.0=py39_cu111 -> python[version='>=3.9,<3.10.0a0'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] pillow==8.1.1=py39he98fc37_0 -> olefile -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|3.4.'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python flask==1.1.2=pyh9f0ad1d_0 -> click[version='>=5.1'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|3.4.|>=3'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.5,<3.6.0a0|3.4.|3.9.*'] gorilla==0.3.0=py_0 -> python pyqt==5.9.2=py39h2531618_6 -> sip=4.19.13 -> python[version='>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> python[version='>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.9,<3.10.0a0'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] smmap==3.0.5=pyh44b312d_0 -> python mako==1.1.4=pyh44b312d_0 -> markupsafe[version='>=0.9.2'] -> python[version='2.7.|3.4.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.5,<3.6.0a0|>=3.9,<3.10.0a0'] docker-pycreds==0.4.0=py_0 -> six[version='>=1.4.0'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|3.4.|>=3.9,<3.10.0a0'] requests==2.25.1=pyhd3deb0d_0 -> certifi[version='>=2017.4.17'] -> python[version='2.7.|3.5.|3.6.*|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|>=3.9,<3.10.0a0|<4.0'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] sqlalchemy==1.4.0=py39h3811e60_0 -> python_abi=3.9[build=*_cp39] -> python=3.9 jinja2==2.11.3=pyh44b312d_0 -> python pyopenssl==20.0.1=pyhd8ed1ab_0 -> cryptography[version='>=3.2'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.9,<3.10.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.5,<3.6.0a0|3.4.'] cryptography==3.4.6=py39hbca0aa6_0 -> cffi[version='>=1.12'] -> python[version='3.6.12|3.6.12|3.7.10|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|3.7.9|3.6.9|3.6.9|3.6.9|3.6.9|3.9.*',build='1_73_pypy|2_73_pypy|3_73_pypy|5_73_pypy|5_73_pypy|0_73_pypy|4_73_pypy|0_73_pypy'] pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> ninja -> python[version='3.9.*|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|>=3.5'] websocket-client==0.57.0=py39hf3d152e_4 -> python_abi=3.9[build=*_cp39] -> python[version='2.7.|3.5.|3.6.|3.9.|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|3.4.*'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] simplejson==3.17.2=py39h3811e60_2 -> python_abi=3.9[build=*_cp39] -> python=3.9 requests==2.25.1=pyhd3deb0d_0 -> python docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> six[version='>=1.5'] -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|3.4.|>=3.9,<3.10.0a0'] mako==1.1.4=pyh44b312d_0 -> python cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python pip==21.0.1=py39h06a4308_0 -> setuptools -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|3.4.'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> certifi[version='>=2020.06.20'] -> python[version='2.7.|3.4.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.8,<3.9.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0'] itsdangerous==1.1.0=py_0 -> python pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> python[version='2.7.|3.5.|3.6.|3.9.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.5,<3.6.0a0|>=3'] brotlipy==0.7.0=py39h3811e60_1001 -> cffi[version='>=1.0.0'] -> python[version='2.7.|3.5.|3.6.|3.6.12|3.6.12|3.7.10|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.5,<3.6.0a0|3.7.9|3.6.9|3.6.9|3.6.9|3.6.9|3.4.|3.9.*',build='1_73_pypy|2_73_pypy|3_73_pypy|5_73_pypy|5_73_pypy|0_73_pypy|4_73_pypy|0_73_pypy'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] python==3.9.2=hdb3f193_0 wheel==0.36.2=pyhd3eb1b0_0 -> python chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] markupsafe==1.1.1=py39h3811e60_3 -> python_abi=3.9[build=*_cp39] -> python=3.9 kornia==0.3.0=pyh9f0ad1d_0 -> python python-dateutil==2.8.1=pyhd3eb1b0_0 -> python click==7.1.2=py_0 -> python idna==2.10=pyh9f0ad1d_0 -> python kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python mlflow==1.2.0=py_1 -> alembic -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.7,<3.8.0a0|>=3.6,<3.7.0a0|>=3.5,<3.6.0a0|>=3.6|3.4.|>=3.5|>=3|>=3.8,<3.9.0a0|>=3.9,<3.10.0a0|>=3.4'] python_abi==3.9=1_cp39 -> python=3.9 pycparser==2.20=pyh9f0ad1d_2 -> python tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] python-editor==1.0.4=py_0 -> python llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] alembic==1.5.7=pyhd8ed1ab_0 -> mako -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.5,<3.6.0a0|3.4.|>=3.8,<3.9.0a0|>=3.9,<3.10.0a0'] querystring_parser==1.2.4=py_0 -> python numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> llvmlite=0.36 -> python[version='2.7.|3.5.|3.6.|>=2.7,<2.8.0a0|>=3.6,<3.7.0a0|>=3.7,<3.8.0a0|>=3.8,<3.9.0a0|>=3.5,<3.6.0a0|3.4.']

    Package libprotobuf conflicts for: kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> libprotobuf[version='>=3.15.5,<3.16.0a0|>=3.15.6,<3.16.0a0|>=3.15.8,<3.16.0a0'] mlflow==1.2.0=py_1 -> protobuf[version='>=3.6.0'] -> libprotobuf[version='3.10.0.|3.10.1.|3.11.2.|3.11.3.|3.11.4.|3.12.3.|3.12.4.|3.13.0.|3.13.0.1.|>=3.13.0.1,<3.14.0a0|>=3.13.0,<3.14.0a0|>=3.12.4,<3.13.0a0|>=3.12.3,<3.13.0a0|>=3.11.4,<3.12.0a0|>=3.11.3,<3.12.0a0|>=3.11.2,<3.12.0a0|>=3.10.1,<3.11.0a0|3.9.2.|>=3.9.2,<3.10.0a0|3.8.0.|>=3.8.0,<3.9.0a0|>=3.7.1,<3.8.0a0|>=3.6.1,<3.6.2.0a0|>=3.6.0,<3.6.1.0a0|3.15.8.|>=3.15.8,<3.16.0a0|3.15.7.|>=3.15.7,<3.16.0a0|3.15.6.|>=3.15.6,<3.16.0a0|3.15.5.|>=3.15.5,<3.16.0a0|3.15.4.|>=3.15.4,<3.16.0a0|3.15.3.|>=3.15.3,<3.16.0a0|3.15.2.|>=3.15.2,<3.16.0a0|3.15.1.|>=3.15.1,<3.16.0a0|3.15.0.|>=3.15.0,<3.16.0a0|3.14.0.|>=3.14.0,<3.15.0a0|3.12.1.|>=3.12.1,<3.13.0a0|3.11.1.|>=3.11.1,<3.12.0a0|3.11.0.|>=3.11.0,<3.12.0a0|>=3.10.0,<3.11.0a0|3.9.1.|>=3.9.1,<3.10.0a0|3.9.0.|>=3.9.0,<3.10.0a0|3.7.1.|3.7.0.|>=3.7.0,<3.7.1.0a0|3.6.1.|3.6.0.'] torchvision==0.9.0=py39_cu111 -> pytorch==1.8.0 -> libprotobuf[version='>=3.15.5,<3.16.0a0|>=3.15.6,<3.16.0a0|>=3.15.8,<3.16.0a0'] protobuf==3.15.6=py39he80948d_0 -> libprotobuf[version='3.15.6.*|>=3.15.6,<3.16.0a0'] libprotobuf==3.15.6=h780b84a_0 torchaudio==0.8.0=py39 -> pytorch==1.8.0 -> libprotobuf[version='>=3.15.5,<3.16.0a0|>=3.15.6,<3.16.0a0|>=3.15.8,<3.16.0a0']

    Package _libgcc_mutex conflicts for: libprotobuf==3.15.6=h780b84a_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge lame==3.100=h7f98852_1001 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge yaml==0.2.5=h7b6447c_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] numpy==1.20.1=py39hdbf815f_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge cffi==1.14.5=py39he32792d_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge expat==2.2.10=he6710b0_2 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] ncurses==6.2=he6710b0_1 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] xz==5.2.5=h7b6447c_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] fontconfig==2.13.1=h6c09931_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] python==3.9.2=hdb3f193_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] markupsafe==1.1.1=py39h3811e60_3 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge libgcc-ng==9.3.0=h2828fa1_18 -> _libgcc_mutex==0.1=conda_forge pcre==8.44=he6710b0_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] dbus==1.13.18=hb2f20db_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] gnutls==3.6.13=h85f3911_1 -> libgcc-ng[version='>=7.5.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] libtiff==4.1.0=h2733197_1 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] bzip2==1.0.8=h7f98852_4 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge gst-plugins-base==1.14.0=h8213a91_2 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] ninja==1.10.2=h4bd325d_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge ffmpeg==4.3=hf484d3e_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] protobuf==3.15.6=py39he80948d_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge kiwisolver==1.3.1=py39h2531618_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] gstreamer==1.14.0=h28cd5cc_2 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] tornado==6.1=py39h27cfd23_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] libedit==3.1.20191231=h14c3975_1 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] libxml2==2.9.10=hb55368b_3 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] lcms2==2.11=h396b838_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] simplejson==3.17.2=py39h3811e60_2 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge pyqt==5.9.2=py39h2531618_6 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] cudatoolkit==11.1.1=h6406543_8 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge libllvm10==10.0.1=hbcb73fb_5 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] tk==8.6.10=hbc83047_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] _libgcc_mutex==0.1=conda_forge libuuid==1.0.3=h1bed415_2 -> libgcc-ng[version='>=7.2.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] matplotlib-base==3.3.4=py39h62a2d02_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] libgcc-ng==9.3.0=h2828fa1_18 -> _openmp_mutex[version='>=4.5'] -> _libgcc_mutex==0.1=main nettle==3.6=he412f7d_0 -> libgcc-ng[version='>=7.5.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] _openmp_mutex==4.5=1_llvm -> _libgcc_mutex==0.1=conda_forge sqlalchemy==1.4.0=py39h3811e60_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge icu==58.2=he6710b0_3 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] libpng==1.6.37=h21135ba_2 -> libgcc-ng[version='>=7.5.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] libiconv==1.16=h516909a_0 -> libgcc-ng[version='>=7.5.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] lz4-c==1.9.3=h9c3ff4c_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge blas==2.108=mkl -> _openmp_mutex=[build=*_llvm] -> _libgcc_mutex==0.1[build='main|conda_forge'] glib==2.67.4=h36276a3_1 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] brotlipy==0.7.0=py39h3811e60_1001 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge mkl==2020.4=h726a3e6_304 -> _openmp_mutex=[build=*_llvm] -> _libgcc_mutex==0.1[build='main|conda_forge'] sqlite==3.33.0=h62c20be_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] gmp==6.2.1=h58526e2_0 -> libgcc-ng[version='>=7.5.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] zlib==1.2.11=h7b6447c_3 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] qt==5.9.7=h5867ecd_1 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] jpeg==9b=h024ee3a_2 -> libgcc-ng=7.2.0 -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] libxcb==1.14=h7b6447c_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] pillow==8.1.1=py39he98fc37_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] llvmlite==0.36.0=py39h612dafd_4 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] pandas==1.2.3=py39hde0f152_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge sip==4.19.13=py39h2531618_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] readline==8.1=h27cfd23_0 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] zstd==1.4.9=ha95c52a_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge openh264==2.1.1=h780b84a_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge pyyaml==5.4.1=py39h3811e60_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge openssl==1.1.1j=h7f98852_0 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge libffi==3.3=he6710b0_2 -> libgcc-ng[version='>=7.3.0'] -> _libgcc_mutex[version='*|0.1',build='main|conda_forge'] freetype==2.10.4=h0708190_1 -> libgcc-ng[version='>=9.3.0'] -> _libgcc_mutex==0.1=conda_forge

    Package pysocks conflicts for: requests==2.25.1=pyhd3deb0d_0 -> urllib3[version='>=1.21.1,<1.27'] -> pysocks[version='>=1.5.6,<2.0,!=1.5.7'] urllib3==1.26.4=pyhd8ed1ab_0 -> pysocks[version='>=1.5.6,<2.0,!=1.5.7'] pysocks==1.7.1=py39hf3d152e_3

    Package python_abi conflicts for: python-editor==1.0.4=py_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] idna==2.10=pyh9f0ad1d_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] certifi==2020.12.5=py39hf3d152e_1 -> python_abi=3.9[build=*_cp39] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] sqlalchemy==1.4.0=py39h3811e60_0 -> python_abi=3.9[build=*_cp39] pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> python_abi[version='3.6.|3.6|3.7.|3.7|3.8.',build='_cp36m|_pypy37_pp73|_cp38|_cp37m|_pypy36_pp73'] cffi==1.14.5=py39he32792d_0 -> python_abi=3.9[build=*_cp39] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> python_abi[version='3.6.|3.6|3.7|3.9.|3.8.|3.7.',build='_cp36m|_pypy37_pp73|_pypy36_pp73|_cp39|_cp38|_cp37m'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] click==7.1.2=py_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] cryptography==3.4.6=py39hbca0aa6_0 -> python_abi=3.9[build=*_cp39] pycparser==2.20=pyh9f0ad1d_2 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] requests==2.25.1=pyhd3deb0d_0 -> certifi[version='>=2017.4.17'] -> python_abi[version='2.7.|3.6.|3.6|3.7|3.7.|3.9.|3.8.',build='_cp36m|_pypy37_pp73|_cp37m|_pypy36_pp73|_cp39|_cp38|_cp27mu'] websocket-client==0.57.0=py39hf3d152e_4 -> python_abi=3.9[build=*_cp39] torchvision==0.9.0=py39_cu111 -> python_abi=3.9[build=*_cp39] protobuf==3.15.6=py39he80948d_0 -> setuptools -> python_abi[version='3.6|3.6.|3.7|3.7.|3.8.',build='_cp36m|_pypy37_pp73|_cp37m|_cp38|_pypy36_pp73'] mako==1.1.4=pyh44b312d_0 -> markupsafe[version='>=0.9.2'] -> python_abi[version='2.7.|3.6|3.6.|3.9.|3.7|3.7.|3.8.',build='_cp38|_pypy37_pp73|_cp36m|_cp39|_cp37m|_pypy36_pp73|_cp27mu'] urllib3==1.26.4=pyhd8ed1ab_0 -> brotlipy[version='>=0.6.0'] -> python_abi[version='2.7.|3.6|3.6.|3.7|3.9.|3.8.|3.7.',build='_cp27mu|_cp36m|_pypy37_pp73|_cp39|_cp38|_cp37m|_pypy36_pp73'] pandas==1.2.3=py39hde0f152_0 -> python_abi=3.9[build=*_cp39] gunicorn==20.0.4=py39hf3d152e_3 -> setuptools -> python_abi[version='3.6|3.6.|3.7|3.7.|3.8.',build='_cp36m|_pypy37_pp73|_cp37m|_cp38|_pypy36_pp73'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> ninja -> python_abi[version='2.7.|3.6|3.6.|3.8.|3.7.|3.7',build='_pypy37_pp73|_cp37m|_cp36m|_pypy36_pp73|_cp38|_cp27mu'] querystring_parser==1.2.4=py_0 -> python -> python_abi[version='2.7.|3.6.|3.6|3.7|3.8.|3.7.',build='_cp37m|_cp38|_pypy37_pp73|_pypy36_pp73|_cp36m|_cp27mu'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> python_abi[version='3.6.|3.6|3.7.|3.7|3.8.',build='_cp36m|_pypy37_pp73|_cp38|_cp37m|_pypy36_pp73'] chardet==4.0.0=py39hf3d152e_1 -> python_abi=3.9[build=*_cp39] pyyaml==5.4.1=py39h3811e60_0 -> python_abi=3.9[build=*_cp39] pip==21.0.1=py39h06a4308_0 -> setuptools -> python_abi[version='3.6|3.6.|3.7|3.7.|3.9.|3.8.',build='_cp36m|_pypy37_pp73|_cp37m|_cp39|_cp38|_pypy36_pp73'] setuptools==52.0.0=py39h06a4308_0 -> certifi[version='>=2016.9.26'] -> python_abi[version='2.7.|3.6.|3.6|3.7|3.7.|3.9.|3.8.',build='_cp36m|_pypy37_pp73|_cp37m|_pypy36_pp73|_cp39|_cp38|_cp27mu'] docker-py==4.4.4=py39hf3d152e_0 -> python_abi=3.9[build=*_cp39] cryptography==3.4.6=py39hbca0aa6_0 -> cffi[version='>=1.12'] -> python_abi[version='3.6|3.6.|3.7.|3.8.|3.7',build='_pypy37_pp73|_cp36m|_cp37m|_cp38|_pypy36_pp73'] brotlipy==0.7.0=py39h3811e60_1001 -> cffi[version='>=1.0.0'] -> python_abi[version='3.6|3.6.|3.7.|3.8.|3.7',build='_pypy37_pp73|_cp36m|_cp37m|_cp38|_pypy36_pp73'] torchaudio==0.8.0=py39 -> python_abi=3.9[build=*_cp39] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] olefile==0.46=pyh9f0ad1d_1 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] brotlipy==0.7.0=py39h3811e60_1001 -> python_abi=3.9[build=*_cp39] jinja2==2.11.3=pyh44b312d_0 -> markupsafe[version='>=0.23'] -> python_abi[version='2.7.|3.6|3.6.|3.9.|3.7|3.7.|3.8.',build='_cp38|_pypy37_pp73|_cp36m|_cp39|_cp37m|_pypy36_pp73|_cp27mu'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> llvmlite=0.36 -> python_abi[version='3.6|3.6.|3.8.|3.9.|3.7|3.7.',build='_pypy37_pp73|_cp36m|_cp38|_cp39|_pypy36_pp73|_cp37m'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> python_abi[version='2.7.|3.6.|3.6|3.7|3.9.|3.7.|3.8.',build='_cp27mu|_cp38|_cp36m|_pypy37_pp73|_pypy36_pp73|_cp39|_cp37m'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python_abi=3.9[build=*_cp39] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] smmap==3.0.5=pyh44b312d_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] pysocks==1.7.1=py39hf3d152e_3 -> python_abi=3.9[build=*_cp39] mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> python_abi[version='2.7.|3.6|3.6.|3.7.|3.7|3.9.|3.8.',build='_cp27mu|_pypy37_pp73|_cp36m|_cp37m|_cp39|_pypy36_pp73|_cp38'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] docker-pycreds==0.4.0=py_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] docker-py==4.4.4=py39hf3d152e_0 -> asn1crypto[version='>=0.22.0'] -> python_abi[version='2.7.|3.8.|3.6.|3.6|3.7.|3.7',build='_pypy37_pp73|_cp37m|_cp36m|_cp27mu|_cp38|_pypy36_pp73'] gunicorn==20.0.4=py39hf3d152e_3 -> python_abi=3.9[build=*_cp39] flask==1.1.2=pyh9f0ad1d_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] itsdangerous==1.1.0=py_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] markupsafe==1.1.1=py39h3811e60_3 -> python_abi=3.9[build=*_cp39] wheel==0.36.2=pyhd3eb1b0_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] numpy==1.20.1=py39hdbf815f_0 -> python_abi=3.9[build=*_cp39] matplotlib==3.3.4=py39hf3d152e_0 -> python_abi=3.9[build=*_cp39] databricks-cli==0.9.1=py_0 -> configparser[version='>=0.3.5'] -> python_abi[version='2.7.|3.6.|3.6|3.7.|3.8.|3.7',build='_pypy37_pp73|_cp36m|_cp37m|_cp38|_pypy36_pp73|_cp27mu'] simplejson==3.17.2=py39h3811e60_2 -> python_abi=3.9[build=*_cp39] qt==5.9.7=h5867ecd_1 -> glib[version='>=2.56.2,<3.0a0'] -> python_abi[version='2.7.|3.6|3.6.|3.7.|3.8.',build='_cp36m|_cp37m|_pypy36_pp73|_cp38|*_cp27mu'] python_abi==3.9=1_cp39 matplotlib-base==3.3.4=py39h62a2d02_0 -> certifi[version='>=2020.06.20'] -> python_abi[version='2.7.|3.6.|3.6|3.7|3.7.|3.9.|3.8.',build='_cp36m|_pypy37_pp73|_cp37m|_pypy36_pp73|_cp39|_cp38|_cp27mu'] protobuf==3.15.6=py39he80948d_0 -> python_abi=3.9[build=*_cp39] pyopenssl==20.0.1=pyhd8ed1ab_0 -> cryptography[version='>=3.2'] -> python_abi[version='3.6|3.6.|3.9.|3.7.|3.8.|3.7',build='_pypy37_pp73|_cp38|_cp37m|_cp36m|_cp39|_pypy36_pp73'] dbus==1.13.18=hb2f20db_0 -> glib -> python_abi[version='2.7.|3.6|3.6.|3.7.|3.8.',build='_cp36m|_cp37m|_pypy36_pp73|_cp38|*_cp27mu'] torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> python_abi[version='3.6.|3.6|3.7.|3.7|3.8.',build='_cp36m|_pypy37_pp73|_cp38|_cp37m|_pypy36_pp73'] gorilla==0.3.0=py_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> python_abi[version='3.6|3.7',build='_pypy37_pp73|_pypy36_pp73'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> python_abi[version='3.6.|3.6|3.7.|3.8.|3.7',build='_pypy37_pp73|_cp37m|_pypy36_pp73|_cp38|_cp36m']

    Package bzip2 conflicts for: alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] querystring_parser==1.2.4=py_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] databricks-cli==0.9.1=py_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] mako==1.1.4=pyh44b312d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] click==7.1.2=py_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] bzip2==1.0.8=h7f98852_4 torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> bzip2[version='>=1.0.8,<2.0a0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] python-editor==1.0.4=py_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] pycparser==2.20=pyh9f0ad1d_2 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] flask==1.1.2=pyh9f0ad1d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] olefile==0.46=pyh9f0ad1d_1 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] gorilla==0.3.0=py_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] requests==2.25.1=pyhd3deb0d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] idna==2.10=pyh9f0ad1d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] jinja2==2.11.3=pyh44b312d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] itsdangerous==1.1.0=py_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] ffmpeg==4.3=hf484d3e_0 -> bzip2[version='>=1.0.8,<2.0a0'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] smmap==3.0.5=pyh44b312d_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] docker-pycreds==0.4.0=py_0 -> python -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> bzip2[version='>=1.0.6,<2.0a0|>=1.0.8,<2.0a0']

    Package pyparsing conflicts for: packaging==20.9=pyh44b312d_0 -> pyparsing[version='>=2.0.2'] docker-py==4.4.4=py39hf3d152e_0 -> packaging[version='>=16.8'] -> pyparsing[version='>=2.0.2'] matplotlib-base==3.3.4=py39h62a2d02_0 -> pyparsing[version='>=2.0.3,!=2.0.4,!=2.1.2,!=2.1.6'] docker-py==4.4.4=py39hf3d152e_0 -> pyparsing[version='>=2.2.0'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> pyparsing[version='>=2.0.3,!=2.0.4,!=2.1.2,!=2.1.6'] mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> pyparsing[version='>=2.2.0'] pyparsing==2.4.7=pyhd3eb1b0_0

    Package libedit conflicts for: sqlite==3.33.0=h62c20be_0 -> libedit[version='>=3.1.20191231,<3.2.0a0'] python==3.9.2=hdb3f193_0 -> sqlite[version='>=3.33.0,<4.0a0'] -> libedit[version='>=3.1.20191231,<3.2.0a0'] libedit==3.1.20191231=h14c3975_1 qt==5.9.7=h5867ecd_1 -> sqlite[version='>=3.25.3,<4.0a0'] -> libedit[version='>=3.1.20170329,<3.2.0a0|>=3.1.20181209,<3.2.0a0|>=3.1.20191231,<3.2.0a0']

    Package chardet conflicts for: requests==2.25.1=pyhd3deb0d_0 -> chardet[version='>=3.0.2,<5'] docker-py==4.4.4=py39hf3d152e_0 -> requests[version='>=2.14.2'] -> chardet[version='>=3.0.2,<3.1.0|>=3.0.2,<4|>=3.0.2,<5'] databricks-cli==0.9.1=py_0 -> requests[version='>=2.17.3'] -> chardet[version='>=3.0.2,<3.1.0|>=3.0.2,<4|>=3.0.2,<5'] mlflow==1.2.0=py_1 -> requests[version='>=2.17.3'] -> chardet[version='>=3.0.2,<3.1.0|>=3.0.2,<4|>=3.0.2,<5'] querystring_parser==1.2.4=py_0 -> requests -> chardet[version='>=3.0.2,<3.1.0|>=3.0.2,<4|>=3.0.2,<5'] chardet==4.0.0=py39hf3d152e_1

    Package libcblas conflicts for: liblapacke==3.9.0=8_mkl -> libcblas==3.9.0=8_mkl libcblas==3.9.0=8_mkl pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> libcblas[version='>=3.8.0,<4.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> libcblas[version='3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.9.0|>=3.8.0,<4.0a0',build='6_mkl|9_mkl|10_mkl|11_mkl|13_mkl|18_mkl|20_mkl|6_mkl|7_mkl|8_mkl|5_mkl|21_mkl|19_mkl|16_mkl|15_mkl|14_mkl|12_mkl|8_mkl|7_mkl|5_mkl|4_mkl'] torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> libcblas[version='>=3.8.0,<4.0a0'] mlflow==1.2.0=py_1 -> numpy -> libcblas[version='>=3.8.0,<4.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] -> libcblas[version='>=3.8.0,<4.0a0'] blas==2.108=mkl -> libcblas==3.9.0=8_mkl blas-devel==3.9.0=8_mkl -> libcblas==3.9.0=8_mkl numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> libcblas[version='>=3.8.0,<4.0a0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> libcblas[version='>=3.8.0,<4.0a0'] numpy==1.20.1=py39hdbf815f_0 -> libcblas[version='>=3.8.0,<4.0a0']

    Package openjpeg conflicts for: torchvision==0.9.0=py39_cu111 -> pillow[version='>=4.1.1'] -> openjpeg[version='>=2.4.0,<3.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> pillow[version='>=6.2.0'] -> openjpeg[version='>=2.4.0,<3.0a0']

    Package docker-pycreds conflicts for: docker-py==4.4.4=py39hf3d152e_0 -> docker-pycreds[version='>=0.2.1|>=0.3.0'] docker-pycreds==0.4.0=py_0 mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> docker-pycreds[version='>=0.2.1|>=0.3.0']

    Package tk conflicts for: packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] docker-pycreds==0.4.0=py_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> pillow[version='>=6.2.0'] -> tk[version='>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.9,<8.7.0a0'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> tk entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] click==7.1.2=py_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] idna==2.10=pyh9f0ad1d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] flask==1.1.2=pyh9f0ad1d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] itsdangerous==1.1.0=py_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] smmap==3.0.5=pyh44b312d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] mako==1.1.4=pyh44b312d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] python-editor==1.0.4=py_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] torchvision==0.9.0=py39_cu111 -> pillow[version='>=4.1.1'] -> tk[version='8.6.*|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] querystring_parser==1.2.4=py_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] pillow==8.1.1=py39he98fc37_0 -> tk numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] olefile==0.46=pyh9f0ad1d_1 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] gorilla==0.3.0=py_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] requests==2.25.1=pyhd3deb0d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] pycparser==2.20=pyh9f0ad1d_2 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] jinja2==2.11.3=pyh44b312d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] python_abi==3.9=1_cp39 -> python=3.9 -> tk[version='>=8.6.10,<8.7.0a0'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] tk==8.6.10=hbc83047_0 pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] databricks-cli==0.9.1=py_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> tk[version='>=8.6.10,<8.7.0a0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> tk[version='8.5.|8.6.|>=8.6.10,<8.7.0a0|>=8.6.8,<8.7.0a0|>=8.6.7,<8.7.0a0|>=8.6.9,<8.7.0a0'] python==3.9.2=hdb3f193_0 -> tk[version='>=8.6.10,<8.7.0a0']

    Package mako conflicts for: alembic==1.5.7=pyhd8ed1ab_0 -> mako mlflow==1.2.0=py_1 -> alembic -> mako mako==1.1.4=pyh44b312d_0

    Package libblas conflicts for: torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> libblas[version='|>=3.8.0,<4.0a0|>=3.9.0,<4.0a0',build=_mkl] numpy==1.20.1=py39hdbf815f_0 -> libcblas[version='>=3.8.0,<4.0a0'] -> libblas[version='3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0.|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0|3.9.0.',build='4_mkl|5_blis|5_openblas|6_mkl|10_blis|10_openblas|11_blis|11_mkl|12_openblas|12_mkl|13_mkl|13_blis|14_openblas|15_mkl|16_blis|18_mkl|20_mkl|2_openblas|4_blis|5_openblas|6_mkl|8_openblas|8_mkl|8_blis|7_mkl|7_openblas|7_blis|6_openblas|6_blis|5_mkl|5_blis|4_mkl|4_openblas|3_openblas|3_blis|2_blis|1_openblas|1_blis|0_openblas|0_blis|21_mkl|19_mkl|17_openblas|16_mkl|16_openblas|15_openblas|15_blis|14_mkl|14_blis|13_openblas|12_blis|11_openblas|10_mkl|9_mkl|9_blis|9_openblas|8_mkl|8_openblas|8_blis|7_mkl|7_openblas|7_blis|6_openblas|6_blis|5_mkl|4_openblas|4_blis'] kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> libblas[version='|>=3.9.0,<4.0a0|>=3.8.0,<4.0a0',build=_mkl] libblas==3.9.0=8_mkl liblapacke==3.9.0=8_mkl -> libblas==3.9.0=8_mkl torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> libblas[version='|>=3.8.0,<4.0a0|>=3.9.0,<4.0a0',build=_mkl] blas==2.108=mkl -> libblas==3.9.0=8_mkl blas-devel==3.9.0=8_mkl -> libblas==3.9.0=8_mkl pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> libblas[version='>=3.8.0,<4.0a0'] liblapack==3.9.0=8_mkl -> libblas==3.9.0=8_mkl numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> libblas[version='>=3.8.0,<4.0a0'] libcblas==3.9.0=8_mkl -> libblas==3.9.0=8_mkl numpy==1.20.1=py39hdbf815f_0 -> libblas[version='>=3.8.0,<4.0a0'] mlflow==1.2.0=py_1 -> numpy -> libblas[version='>=3.8.0,<4.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> libblas[version='3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.9.0|>=3.8.0,<4.0a0',build='6_mkl|9_mkl|10_mkl|11_mkl|13_mkl|18_mkl|20_mkl|6_mkl|7_mkl|8_mkl|5_mkl|21_mkl|19_mkl|16_mkl|15_mkl|14_mkl|12_mkl|8_mkl|7_mkl|5_mkl|4_mkl'] matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] -> libblas[version='>=3.8.0,<4.0a0']

    Package libgfortran5 conflicts for: pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> libgfortran5[version='>=9.3.0'] blas==2.108=mkl -> libgfortran-ng -> libgfortran5[version='8.4.0.|9.3.0.'] blas==2.108=mkl -> libgfortran5[version='>=9.3.0'] numpy==1.20.1=py39hdbf815f_0 -> libblas[version='>=3.8.0,<4.0a0'] -> libgfortran5[version='>=9.3.0'] libgfortran-ng==9.3.0=hff62375_18 -> libgfortran5=9.3.0 libgfortran5==9.3.0=hff62375_18

    Package pypy3.6 conflicts for: torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> pypy3.6[version='>=7.3.1|>=7.3.2|>=7.3.3'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] gunicorn==20.0.4=py39hf3d152e_3 -> setuptools -> pypy3.6[version='>=7.3.1|>=7.3.2|>=7.3.3'] pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> pypy3.6[version='>=7.3.3'] itsdangerous==1.1.0=py_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] jinja2==2.11.3=pyh44b312d_0 -> markupsafe[version='>=0.23'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.|>=7.3.2|>=7.3.3|>=7.3.1'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> pypy3.6[version='>=7.3.1|>=7.3.2|>=7.3.3'] brotlipy==0.7.0=py39h3811e60_1001 -> cffi[version='>=1.0.0'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] flask==1.1.2=pyh9f0ad1d_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] querystring_parser==1.2.4=py_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] urllib3==1.26.4=pyhd8ed1ab_0 -> brotlipy[version='>=0.6.0'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.|>=7.3.1|>=7.3.2|>=7.3.3'] smmap==3.0.5=pyh44b312d_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> llvmlite=0.36 -> pypy3.6[version='>=7.3.1|>=7.3.2|>=7.3.3'] databricks-cli==0.9.1=py_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] docker-py==4.4.4=py39hf3d152e_0 -> asn1crypto[version='>=0.22.0'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.|>=7.3.1|>=7.3.3|>=7.3.2'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> cryptography[version='>=3.2'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.|>=7.3.2|>=7.3.3'] gorilla==0.3.0=py_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] setuptools==52.0.0=py39h06a4308_0 -> certifi[version='>=2016.9.26'] -> pypy3.6[version='>=7.3.1|>=7.3.2|>=7.3.3'] click==7.1.2=py_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.|>=7.3.1|>=7.3.2|>=7.3.3'] mako==1.1.4=pyh44b312d_0 -> markupsafe[version='>=0.9.2'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.|>=7.3.2|>=7.3.3'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.|>=7.3.3|>=7.3.2|>=7.3.1'] olefile==0.46=pyh9f0ad1d_1 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] matplotlib-base==3.3.4=py39h62a2d02_0 -> certifi[version='>=2020.06.20'] -> pypy3.6[version='>=7.3.1|>=7.3.2|>=7.3.3'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] pycparser==2.20=pyh9f0ad1d_2 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] protobuf==3.15.6=py39he80948d_0 -> setuptools -> pypy3.6[version='>=7.3.1|>=7.3.2|>=7.3.3'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> pypy3.6[version='>=7.3.3'] python-editor==1.0.4=py_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] docker-pycreds==0.4.0=py_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] cryptography==3.4.6=py39hbca0aa6_0 -> cffi[version='>=1.12'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] pip==21.0.1=py39h06a4308_0 -> setuptools -> pypy3.6[version='>=7.3.1|>=7.3.2|>=7.3.3'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> ninja -> pypy3.6[version='>=7.3.1|>=7.3.3|>=7.3.2'] idna==2.10=pyh9f0ad1d_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.'] requests==2.25.1=pyhd3deb0d_0 -> certifi[version='>=2017.4.17'] -> pypy3.6[version='7.3.0.|7.3.1.|7.3.2.|7.3.3.|>=7.3.1|>=7.3.2|>=7.3.3']

    Package dbus conflicts for: dbus==1.13.18=hb2f20db_0 qt==5.9.7=h5867ecd_1 -> dbus[version='>=1.13.2,<2.0a0'] matplotlib==3.3.4=py39hf3d152e_0 -> pyqt -> dbus[version='>=1.10.22,<2.0a0|>=1.12.2,<2.0a0|>=1.13.12,<2.0a0|>=1.13.2,<2.0a0|>=1.13.6,<2.0a0'] pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> dbus[version='>=1.12.2,<2.0a0|>=1.13.2,<2.0a0|>=1.13.6,<2.0a0']

    Package fontconfig conflicts for: pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> fontconfig[version='>=2.12.6,<3.0a0|>=2.13.0,<3.0a0|>=2.13.1,<3.0a0'] qt==5.9.7=h5867ecd_1 -> fontconfig[version='>=2.13.0,<3.0a0'] fontconfig==2.13.1=h6c09931_0

    Package zlib conflicts for: brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] idna==2.10=pyh9f0ad1d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] openh264==2.1.1=h780b84a_0 -> zlib[version='>=1.2.11,<1.3.0a0'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] qt==5.9.7=h5867ecd_1 -> zlib[version='>=1.2.11,<1.3.0a0'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] libprotobuf==3.15.6=h780b84a_0 -> zlib[version='>=1.2.11,<1.3.0a0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] python_abi==3.9=1_cp39 -> python=3.9 -> zlib[version='>=1.2.11,<1.3.0a0'] docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] jinja2==2.11.3=pyh44b312d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] requests==2.25.1=pyhd3deb0d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] zstd==1.4.9=ha95c52a_0 -> zlib[version='>=1.2.11,<1.3.0a0'] querystring_parser==1.2.4=py_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] freetype==2.10.4=h0708190_1 -> zlib[version='>=1.2.11,<1.3.0a0'] glib==2.67.4=h36276a3_1 -> zlib[version='>=1.2.11,<1.3.0a0'] torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] dbus==1.13.18=hb2f20db_0 -> glib -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] gstreamer==1.14.0=h28cd5cc_2 -> glib[version='>=2.66.1,<3.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] click==7.1.2=py_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] pycparser==2.20=pyh9f0ad1d_2 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] libllvm10==10.0.1=hbcb73fb_5 -> zlib[version='>=1.2.11,<1.3.0a0'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] llvmlite==0.36.0=py39h612dafd_4 -> libllvm10[version='>=10.0.1,<10.1.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] python-editor==1.0.4=py_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] tk==8.6.10=hbc83047_0 -> zlib[version='>=1.2.11,<1.3.0a0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] gst-plugins-base==1.14.0=h8213a91_2 -> zlib[version='>=1.2.11,<1.3.0a0'] libxml2==2.9.10=hb55368b_3 -> zlib[version='>=1.2.11,<1.3.0a0'] ffmpeg==4.3=hf484d3e_0 -> zlib[version='>=1.2.11,<1.3.0a0'] pillow==8.1.1=py39he98fc37_0 -> zlib[version='>=1.2.11,<1.3.0a0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] mako==1.1.4=pyh44b312d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] smmap==3.0.5=pyh44b312d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] sqlite==3.33.0=h62c20be_0 -> zlib[version='>=1.2.11,<1.3.0a0'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] gorilla==0.3.0=py_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> freetype[version='>=2.10.4,<3.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] lcms2==2.11=h396b838_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] python==3.9.2=hdb3f193_0 -> zlib[version='>=1.2.11,<1.3.0a0'] protobuf==3.15.6=py39he80948d_0 -> libprotobuf=3.15.6 -> zlib[version='>=1.2.11,<1.3.0a0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] docker-pycreds==0.4.0=py_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] fontconfig==2.13.1=h6c09931_0 -> freetype[version='>=2.10.4,<3.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] zlib==1.2.11=h7b6447c_3 flask==1.1.2=pyh9f0ad1d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] libtiff==4.1.0=h2733197_1 -> zlib[version='>=1.2.11,<1.3.0a0'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> zlib[version='1.2.*|1.2.11|>=1.2.11,<1.3.0a0|1.2.8'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> llvmlite=0.36 -> zlib[version='>=1.2.11,<1.3.0a0'] databricks-cli==0.9.1=py_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] itsdangerous==1.1.0=py_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] olefile==0.46=pyh9f0ad1d_1 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> zlib[version='1.2.|1.2.11|>=1.2.11,<1.3.0a0|1.2.8|1.2.11.'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> zlib[version='>=1.2.11,<1.3.0a0'] libpng==1.6.37=h21135ba_2 -> zlib[version='>=1.2.11,<1.3.0a0']

    Package wheel conflicts for: mlflow==1.2.0=py_1 -> pip -> wheel wheel==0.36.2=pyhd3eb1b0_0 pip==21.0.1=py39h06a4308_0 -> wheel python==3.9.2=hdb3f193_0 -> pip -> wheel

    Package setuptools conflicts for: numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> setuptools setuptools==52.0.0=py39h06a4308_0 flask==1.1.2=pyh9f0ad1d_0 -> jinja2[version='>=2.10.1'] -> setuptools jinja2==2.11.3=pyh44b312d_0 -> setuptools mlflow==1.2.0=py_1 -> gunicorn -> setuptools[version='>=3.0'] gunicorn==20.0.4=py39hf3d152e_3 -> setuptools pip==21.0.1=py39h06a4308_0 -> setuptools python==3.9.2=hdb3f193_0 -> pip -> setuptools matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> setuptools matplotlib-base==3.3.4=py39h62a2d02_0 -> setuptools protobuf==3.15.6=py39he80948d_0 -> setuptools

    Package readline conflicts for: sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] docker-pycreds==0.4.0=py_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] readline==8.1=h27cfd23_0 appdirs==1.4.4=pyh9f0ad1d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] click==7.1.2=py_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] pycparser==2.20=pyh9f0ad1d_2 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] torchvision==0.9.0=py39_cu111 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0'] mako==1.1.4=pyh44b312d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] gorilla==0.3.0=py_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] python-editor==1.0.4=py_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] jinja2==2.11.3=pyh44b312d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] flask==1.1.2=pyh9f0ad1d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] python_abi==3.9=1_cp39 -> python=3.9 -> readline[version='>=8.0,<9.0a0'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] databricks-cli==0.9.1=py_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] olefile==0.46=pyh9f0ad1d_1 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0'] requests==2.25.1=pyhd3deb0d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] idna==2.10=pyh9f0ad1d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] smmap==3.0.5=pyh44b312d_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0'] itsdangerous==1.1.0=py_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] qt==5.9.7=h5867ecd_1 -> sqlite[version='>=3.25.3,<4.0a0'] -> readline[version='>=7.0,<8.0a0|>=8.0,<9.0a0'] python==3.9.2=hdb3f193_0 -> readline[version='>=8.0,<9.0a0'] querystring_parser==1.2.4=py_0 -> python -> readline[version='6.2.|7.|>=7.0,<8.0a0|>=8.0,<9.0a0|7.0|7.0.*'] cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> readline[version='>=8.0,<9.0a0']

    Package cffi conflicts for: docker-py==4.4.4=py39hf3d152e_0 -> cffi[version='>=1.10.0'] docker-py==4.4.4=py39hf3d152e_0 -> cryptography[version='>=1.9'] -> cffi[version='!=1.11.3,>=1.8|>=1.8|>=1.7|>=1.12|>=1.8,!=1.11.3'] cffi==1.14.5=py39he32792d_0 mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> cffi[version='>=1.10.0'] torchaudio==0.8.0=py39 -> pytorch==1.8.0 -> cffi brotlipy==0.7.0=py39h3811e60_1001 -> cffi[version='>=1.0.0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> cryptography[version='>=3.2'] -> cffi[version='!=1.11.3,>=1.8|>=1.12'] urllib3==1.26.4=pyhd8ed1ab_0 -> brotlipy[version='>=0.6.0'] -> cffi[version='!=1.11.3,>=1.8|>=1.0.0|>=1.8|>=1.7|>=1.12|>=1.8,!=1.11.3'] kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> cffi torchvision==0.9.0=py39_cu111 -> pytorch==1.8.0 -> cffi cryptography==3.4.6=py39hbca0aa6_0 -> cffi[version='>=1.12']

    Package enum34 conflicts for: matplotlib==3.3.4=py39hf3d152e_0 -> pyqt -> enum34 mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> enum34[version='>=1.1.6'] docker-py==4.4.4=py39hf3d152e_0 -> cryptography[version='>=1.9'] -> enum34 urllib3==1.26.4=pyhd8ed1ab_0 -> brotlipy[version='>=0.6.0'] -> enum34

    Package python-editor conflicts for: mlflow==1.2.0=py_1 -> alembic -> python-editor[version='>=0.3'] python-editor==1.0.4=py_0 alembic==1.5.7=pyhd8ed1ab_0 -> python-editor[version='>=0.3']

    Package sqlite conflicts for: pytz==2021.1=pyhd8ed1ab_0 -> python[version='>=3'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] llvmlite==0.36.0=py39h612dafd_4 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] cryptography==3.4.6=py39hbca0aa6_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] sqlite==3.33.0=h62c20be_0 jinja2==2.11.3=pyh44b312d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] requests==2.25.1=pyhd3deb0d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] pip==21.0.1=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] cycler==0.10.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] docker-py==4.4.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] numpy==1.20.1=py39hdbf815f_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] websocket-client==0.57.0=py39hf3d152e_4 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] simplejson==3.17.2=py39h3811e60_2 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] torchvision==0.9.0=py39_cu111 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] pycparser==2.20=pyh9f0ad1d_2 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> python[version='>=2.7'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] pillow==8.1.1=py39he98fc37_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] packaging==20.9=pyh44b312d_0 -> python[version='>=2.7'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] gitpython==3.1.14=pyhd8ed1ab_0 -> python[version='>=3.4'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] configparser==5.0.2=pyhd8ed1ab_0 -> python[version='>=3.6'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|>=3.35.4,<4.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] pandas==1.2.3=py39hde0f152_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] six==1.15.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] qt==5.9.7=h5867ecd_1 -> sqlite[version='>=3.25.3,<4.0a0'] chardet==4.0.0=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] appdirs==1.4.4=pyh9f0ad1d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] idna==2.10=pyh9f0ad1d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] urllib3==1.26.4=pyhd8ed1ab_0 -> python[version='<4.0'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] torchaudio==0.8.0=py39 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] wheel==0.36.2=pyhd3eb1b0_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] sqlalchemy==1.4.0=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] pyqt==5.9.2=py39h2531618_6 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0|>=3.29.0,<4.0a0|>=3.28.0,<4.0a0'] cffi==1.14.5=py39he32792d_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] python==3.9.2=hdb3f193_0 -> sqlite[version='>=3.33.0,<4.0a0'] asn1crypto==1.4.0=pyh9f0ad1d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] protobuf==3.15.6=py39he80948d_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] sqlparse==0.4.1=pyh9f0ad1d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] gorilla==0.3.0=py_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] python-editor==1.0.4=py_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] tabulate==0.8.9=pyhd8ed1ab_0 -> python[version='=2.7|>=3.5'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] entrypoints==0.3=pyhd8ed1ab_1003 -> python[version='>=3.6'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|>=3.35.4,<4.0a0'] mlflow==1.2.0=py_1 -> python[version='>=3.6.0'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|>=3.35.4,<4.0a0'] typing_extensions==3.7.4.3=py_0 -> python[version='>=3.5'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] brotlipy==0.7.0=py39h3811e60_1001 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] setuptools==52.0.0=py39h06a4308_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] flask==1.1.2=pyh9f0ad1d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] querystring_parser==1.2.4=py_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] alembic==1.5.7=pyhd8ed1ab_0 -> python[version='>=3.6'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|>=3.35.4,<4.0a0'] sip==4.19.13=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] pysocks==1.7.1=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] databricks-cli==0.9.1=py_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] werkzeug==1.0.1=pyh9f0ad1d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] kiwisolver==1.3.1=py39h2531618_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] kornia==0.3.0=pyh9f0ad1d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] docker-pycreds==0.4.0=py_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] olefile==0.46=pyh9f0ad1d_1 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] matplotlib==3.3.4=py39hf3d152e_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] smmap==3.0.5=pyh44b312d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] gunicorn==20.0.4=py39hf3d152e_3 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] mako==1.1.4=pyh44b312d_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] click==7.1.2=py_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] cloudpickle==1.6.0=py_0 -> python[version='>=3.5'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] tornado==6.1=py39h27cfd23_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] markupsafe==1.1.1=py39h3811e60_3 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] itsdangerous==1.1.0=py_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] gitdb==4.0.5=pyhd8ed1ab_1 -> python[version='>=3.4'] -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] python_abi==3.9=1_cp39 -> python=3.9 -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] certifi==2020.12.5=py39hf3d152e_1 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0'] pyparsing==2.4.7=pyhd3eb1b0_0 -> python -> sqlite[version='3.13.|3.20.|>=3.20.1,<4.0a0|>=3.22.0,<4.0a0|>=3.23.1,<4.0a0|>=3.24.0,<4.0a0|>=3.25.2,<4.0a0|>=3.25.3,<4.0a0|>=3.26.0,<4.0a0|>=3.27.2,<4.0a0|>=3.29.0,<4.0a0|>=3.30.0,<4.0a0|>=3.30.1,<4.0a0|>=3.31.1,<4.0a0|>=3.32.3,<4.0a0|>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.28.0,<4.0a0|>=3.25.1,<4.0a0|3.9.*|>=3.35.4,<4.0a0'] pyyaml==5.4.1=py39h3811e60_0 -> python[version='>=3.9,<3.10.0a0'] -> sqlite[version='>=3.33.0,<4.0a0|>=3.34.0,<4.0a0|>=3.35.4,<4.0a0']

    Package cloudpickle conflicts for: cloudpickle==1.6.0=py_0 mlflow==1.2.0=py_1 -> cloudpickle

    Package llvm-openmp conflicts for: mkl==2020.4=h726a3e6_304 -> llvm-openmp[version='>=11.0.0'] mkl-devel==2020.4=ha770c72_305 -> mkl==2020.4=h726a3e6_304 -> llvm-openmp[version='>=11.0.0'] libgcc-ng==9.3.0=h2828fa1_18 -> _openmp_mutex[version='>=4.5'] -> llvm-openmp[version='>=9.0.1'] llvm-openmp==11.0.1=h4bd325d_0 blas-devel==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] -> llvm-openmp[version='>=11.0.0'] _openmp_mutex==4.5=1_llvm -> llvm-openmp[version='>=9.0.1'] blas==2.108=mkl -> _openmp_mutex=[build=*_llvm] -> llvm-openmp[version='>=9.0.1'] libblas==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] -> llvm-openmp[version='>=11.0.0'] mkl==2020.4=h726a3e6_304 -> _openmp_mutex=[build=*_llvm] -> llvm-openmp[version='>=9.0.1'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> llvm-openmp[version='>=10.0.0|>=11.0.0|>=11.0.1|>=11.1.0|>=9.0.1'] blas==2.108=mkl -> llvm-openmp[version='>=11.0.1']

    Package numpy conflicts for: kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> numpy[version='>=1.11.3,<2.0a0|>=1.11|>=1.19|>=1.14.6,<2.0a0|>=1.9.3,<2.0a0|>=1.9|>=1.17.5,<2.0a0|>=1.19.5,<2.0a0|>=1.16.6,<2.0a0|>=1.19.4,<2.0a0'] mlflow==1.2.0=py_1 -> numpy torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] mlflow==1.2.0=py_1 -> pandas -> numpy[version='1.10.|1.11.|1.12.|1.13.|>=1.11|>=1.11.|>=1.11.3,<2.0a0|>=1.12.1,<2.0a0|>=1.13.3,<2.0a0|>=1.14.6,<2.0a0|>=1.15.4,<2.0a0|>=1.16.6,<2.0a0|>=1.9.3,<2.0a0|>=1.9|>=1.19.5,<2.0a0|>=1.17.5,<2.0a0|>=1.19.4,<2.0a0|>=1.18.5,<2.0a0|>=1.16.5,<2.0a0|>=1.19.2,<2.0a0|>=1.18.4,<2.0a0|>=1.18.1,<2.0a0|>=1.9.|>=1.8|>=1.7'] torchaudio==0.8.0=py39 -> pytorch==1.8.0 -> numpy[version='>=1.16.6,<2.0a0|>=1.17.5,<2.0a0|>=1.19|>=1.19.5,<2.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> numpy[version='>=1.16.6,<2.0a0|>=1.19.5,<2.0a0|>=1.18.5,<2.0a0'] torchvision==0.9.0=py39_cu111 -> pytorch==1.8.0 -> numpy[version='>=1.16.6,<2.0a0|>=1.17.5,<2.0a0|>=1.19|>=1.19.5,<2.0a0'] pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> numpy[version='>=1.19'] numpy==1.20.1=py39hdbf815f_0

    Package packaging conflicts for: pip==21.0.1=py39h06a4308_0 -> wheel -> packaging[version='>=20.2'] mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> packaging[version='>=16.8'] docker-py==4.4.4=py39hf3d152e_0 -> packaging[version='>=16.8'] packaging==20.9=pyh44b312d_0

    Package werkzeug conflicts for: werkzeug==1.0.1=pyh9f0ad1d_0 mlflow==1.2.0=py_1 -> flask -> werkzeug[version='>=0.14|>=0.15|>=0.7|>=0.7,<1.0.0'] flask==1.1.2=pyh9f0ad1d_0 -> werkzeug[version='>=0.15']

    Package markupsafe conflicts for: alembic==1.5.7=pyhd8ed1ab_0 -> mako -> markupsafe[version='>=0.9.2'] jinja2==2.11.3=pyh44b312d_0 -> markupsafe[version='>=0.23'] markupsafe==1.1.1=py39h3811e60_3 flask==1.1.2=pyh9f0ad1d_0 -> jinja2[version='>=2.10.1'] -> markupsafe[version='>=0.23'] mako==1.1.4=pyh44b312d_0 -> markupsafe[version='>=0.9.2']

    Package websocket-client conflicts for: docker-py==4.4.4=py39hf3d152e_0 -> websocket-client[version='>=0.32.0|>=0.40.0'] websocket-client==0.57.0=py39hf3d152e_4 mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> websocket-client[version='>=0.32.0|>=0.40.0']

    Package tabulate conflicts for: databricks-cli==0.9.1=py_0 -> tabulate[version='>=0.7.7'] mlflow==1.2.0=py_1 -> databricks-cli[version='>=0.8.7'] -> tabulate[version='>=0.7.7'] tabulate==0.8.9=pyhd8ed1ab_0

    Package ninja conflicts for: torchaudio==0.8.0=py39 -> pytorch==1.8.0 -> ninja kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> ninja ninja==1.10.2=h4bd325d_0 pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> ninja torchvision==0.9.0=py39_cu111 -> pytorch==1.8.0 -> ninja

    Package jinja2 conflicts for: mlflow==1.2.0=py_1 -> flask -> jinja2[version='>=2.10|>=2.10.1|>=2.4'] jinja2==2.11.3=pyh44b312d_0 flask==1.1.2=pyh9f0ad1d_0 -> jinja2[version='>=2.10.1']

    Package libpng conflicts for: matplotlib-base==3.3.4=py39h62a2d02_0 -> freetype[version='>=2.10.4,<3.0a0'] -> libpng[version='>=1.6.37,<1.7.0a0'] qt==5.9.7=h5867ecd_1 -> libpng[version='>=1.6.35,<1.7.0a0'] libpng==1.6.37=h21135ba_2 freetype==2.10.4=h0708190_1 -> libpng[version='>=1.6.37,<1.7.0a0'] torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> libpng[version='>=1.6.37,<1.7.0a0'] ffmpeg==4.3=hf484d3e_0 -> freetype[version='>=2.10.2,<3.0a0'] -> libpng[version='>=1.6.37,<1.7.0a0'] torchvision==0.9.0=py39_cu111 -> libpng qt==5.9.7=h5867ecd_1 -> fontconfig[version='>=2.13.0,<3.0a0'] -> libpng[version='>=1.6.32,<1.6.35|>=1.6.34,<1.7.0a0|>=1.6.37,<1.7.0a0'] pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> libpng[version='>=1.6.34,<1.7.0a0|>=1.6.35,<1.7.0a0'] pillow==8.1.1=py39he98fc37_0 -> freetype[version='>=2.10.4,<3.0a0'] -> libpng[version='>=1.6.37,<1.7.0a0'] fontconfig==2.13.1=h6c09931_0 -> freetype[version='>=2.10.4,<3.0a0'] -> libpng[version='>=1.6.37,<1.7.0a0']

    Package matplotlib-base conflicts for: matplotlib-base==3.3.4=py39h62a2d02_0 matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0']

    Package mkl conflicts for: mlflow==1.2.0=py_1 -> numpy -> mkl[version='>=2018.0.0,<2019.0a0|>=2018.0.0|>=2018.0.1|>=2018.0.2|>=2018.0.3|>=2019.1,<2020.0a0|>=2019.3,<2020.0a0|>=2019.4,<2020.0a0|>=2021.2.0,<2022.0a0|>=2019.4,<2021.0a0|>=2019.3,<2021.0a0|>=2019.1,<2021.0a0|>=2018.0.3,<2019.0a0|>=2018.0.2,<2019.0a0|>=2018.0.1,<2019.0a0'] numpy==1.20.1=py39hdbf815f_0 -> libblas[version='>=3.8.0,<4.0a0'] -> mkl[version='2019.1.*|>=2019.0,<2020.0a0|>=2020.0,<2021.0a0|>=2020.4,<2021.0a0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> mkl[version='>=2018|>=2018.0.0,<2019.0a0|>=2018.0.0|>=2018.0.1|>=2018.0.2|>=2018.0.3|>=2019.1,<2020.0a0|>=2019.3,<2020.0a0|>=2019.4,<2020.0a0|>=2021.2.0,<2022.0a0|>=2019.4,<2021.0a0|>=2019.3,<2021.0a0|>=2019.1,<2021.0a0|>=2018.0.3,<2019.0a0|>=2018.0.2,<2019.0a0|>=2018.0.1,<2019.0a0|>=2020.4,<2021.0a0'] libblas==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] blas==2.108=mkl -> blas-devel==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] mkl==2020.4=h726a3e6_304 liblapacke==3.9.0=8_mkl -> libblas==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> mkl[version='>=2018'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> mkl[version='>=2018.0.3,<2019.0a0|>=2018.0.3|>=2019.1,<2020.0a0|>=2019.3,<2020.0a0|>=2019.4,<2020.0a0|>=2021.2.0,<2022.0a0|>=2019.4,<2021.0a0|>=2019.3,<2021.0a0|>=2019.1,<2021.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> mkl[version='>=2019.4,<2020.0a0|>=2021.2.0,<2022.0a0|>=2019.4,<2021.0a0'] pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> mkl[version='>=2021.2.0,<2022.0a0'] libcblas==3.9.0=8_mkl -> libblas==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] liblapack==3.9.0=8_mkl -> libblas==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> mkl[version='>=2018|>=2018.0.0,<2019.0a0|>=2018.0.0|>=2018.0.1|>=2018.0.2|>=2018.0.3|>=2019.1,<2020.0a0|>=2019.3,<2020.0a0|>=2019.4,<2020.0a0|>=2021.2.0,<2022.0a0|>=2019.4,<2021.0a0|>=2019.3,<2021.0a0|>=2019.1,<2021.0a0|>=2018.0.3,<2019.0a0|>=2018.0.2,<2019.0a0|>=2018.0.1,<2019.0a0|>=2020.4,<2021.0a0'] blas-devel==3.9.0=8_mkl -> mkl[version='>=2020.4,<2021.0a0'] blas-devel==3.9.0=8_mkl -> mkl-devel -> mkl[version='2017.0.4|2018.0.0|2018.0.1|2018.0.2|2018.0.3|2019.0|2019.0|2019.1|2019.3|2019.4|2019.5|2020.0|2020.1|2020.1|2020.2|2020.2|2020.4|2021.1.1|2021.2.0|2021.2.0',build='h4c4d0af_0|1|1|117|118|144|199|h06a4308_296|166|h726a3e6_79|h726a3e6_389|h726a3e6_304|ha770c72_256|256|219|217|281|243|h19d6760_4|hb491cac_4'] kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> mkl[version='2018.|2019.|>=2018|>=2019.4,<2020.0a0|>=2019.1,<2020.0a0|>=2018.0.3|>=2018.0.2|>=2020.4,<2021.0a0|2020.*|>=2020.2,<2021.0a0|>=2019.4,<2021.0a0|>=2019.1,<2021.0a0|>=2018.0.3,<2019.0a0|>=2018.0.2,<2019.0a0'] mkl-devel==2020.4=ha770c72_305 -> mkl==2020.4=h726a3e6_304 matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] -> mkl[version='>=2019.4,<2020.0a0|>=2021.2.0,<2022.0a0|>=2019.4,<2021.0a0']

    Package nettle conflicts for: nettle==3.6=he412f7d_0 torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> nettle[version='>=3.4.1,<3.5.0a0'] ffmpeg==4.3=hf484d3e_0 -> gnutls[version='>=3.6.5,<3.7.0a0'] -> nettle[version='>=3.4.1|>=3.4.1,<3.5.0a0|>=3.6,<3.7.0a0|>=3.7.2,<3.8.0a0'] gnutls==3.6.13=h85f3911_1 -> nettle[version='>=3.4.1|>=3.6,<3.7.0a0']

    Package zstd conflicts for: lcms2==2.11=h396b838_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> zstd[version='>=1.3.7,<1.3.8.0a0|>=1.4|>=1.4.4,<1.4.5.0a0|>=1.4.9,<1.5.0a0|>=1.4.5,<1.5.0a0|>=1.4.4,<1.5.0.0a0|>=1.4.3,<1.5.0.0a0|>=1.4.5,<1.4.6.0a0|>=1.4.4,<1.5.0a0'] pillow==8.1.1=py39he98fc37_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> zstd[version='>=1.3.7,<1.3.8.0a0|>=1.4|>=1.4.4,<1.4.5.0a0|>=1.4.9,<1.5.0a0|>=1.4.5,<1.5.0a0|>=1.4.4,<1.5.0.0a0|>=1.4.3,<1.5.0.0a0|>=1.4.5,<1.4.6.0a0|>=1.4.4,<1.5.0a0'] zstd==1.4.9=ha95c52a_0 libtiff==4.1.0=h2733197_1 -> zstd[version='>=1.4.4,<1.5.0a0|>=1.4|>=1.4.4,<1.4.5.0a0']

    Package ssl_match_hostname conflicts for: mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> ssl_match_hostname[version='>=3.5'] matplotlib-base==3.3.4=py39h62a2d02_0 -> tornado -> ssl_match_hostname

    Package alembic conflicts for: mlflow==1.2.0=py_1 -> alembic alembic==1.5.7=pyhd8ed1ab_0

    Package libgcc conflicts for: kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> libgcc matplotlib==3.3.4=py39hf3d152e_0 -> pyqt -> libgcc

    Package cudatoolkit conflicts for: torchvision==0.9.0=py39_cu111 -> pytorch==1.8.0 -> cudatoolkit[version='10.2|10.2.|11.0|11.0.|11.1|11.1.|11.2|11.2.|>=10.1,<10.2|>=10.2,<10.3'] torchaudio==0.8.0=py39 -> pytorch==1.8.0 -> cudatoolkit[version='10.2|10.2.|11.0|11.0.|11.1|11.1.|11.2|11.2.|>=10.1,<10.2|>=11.1,<11.2|>=10.2,<10.3'] kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> cudatoolkit[version='10.0.|8.|>=10.0,<10.1|>=10.1,<10.2|>=11.1,<11.2|>=10.2,<10.3|>=11.0,<11.1|>=9.2,<9.3|>=9.0,<9.1|>=8.0,<8.1|9.|>=10.1.243,<10.2.0a0|>=9.2,<9.3.0a0|>=10.0.130,<10.1.0a0|9.2.|>=9.0,<9.1.0a0|>=8.0,<8.1.0a0|9.0.|8.0.|7.5.|11.2|11.2.|11.1|11.1.|11.0|11.0.|10.2|10.2.|10.1|10.1.|10.0|10.0.|9.2|9.2.'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> cudatoolkit[version='>=11.1,<11.2'] cudatoolkit==11.1.1=h6406543_8 torchvision==0.9.0=py39_cu111 -> cudatoolkit[version='>=11.1,<11.2']

    Package urllib3 conflicts for: querystring_parser==1.2.4=py_0 -> requests -> urllib3[version='>=1.21.1,<1.22|>=1.21.1,<1.23|>=1.21.1,<1.24|>=1.21.1,<1.25|>=1.21.1,<1.26,!=1.25.0,!=1.25.1|>=1.21.1,<1.27'] urllib3==1.26.4=pyhd8ed1ab_0 docker-py==4.4.4=py39hf3d152e_0 -> requests[version='>=2.14.2'] -> urllib3[version='>=1.21.1,<1.22|>=1.21.1,<1.23|>=1.21.1,<1.24|>=1.21.1,<1.25|>=1.21.1,<1.26,!=1.25.0,!=1.25.1|>=1.21.1,<1.27'] requests==2.25.1=pyhd3deb0d_0 -> urllib3[version='>=1.21.1,<1.27'] mlflow==1.2.0=py_1 -> requests[version='>=2.17.3'] -> urllib3[version='>=1.21.1,<1.22|>=1.21.1,<1.23|>=1.21.1,<1.24|>=1.21.1,<1.25|>=1.21.1,<1.26,!=1.25.0,!=1.25.1|>=1.21.1,<1.27'] databricks-cli==0.9.1=py_0 -> requests[version='>=2.17.3'] -> urllib3[version='>=1.21.1,<1.22|>=1.21.1,<1.23|>=1.21.1,<1.24|>=1.21.1,<1.25|>=1.21.1,<1.26,!=1.25.0,!=1.25.1|>=1.21.1,<1.27']

    Package libgfortran-ng conflicts for: blas==2.108=mkl -> libgfortran-ng pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> libgfortran-ng[version='>=7,<8.0a0'] mlflow==1.2.0=py_1 -> numpy -> libgfortran-ng[version='7.2.0.*|>=7,<8.0a0|>=7.2.0|>=4.9|>=7.2.0,<8.0a0'] libgfortran-ng==9.3.0=hff62375_18 torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> libgfortran-ng[version='7.2.0.*|>=7,<8.0a0|>=7.2.0|>=4.9|>=7.2.0,<8.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> libgfortran-ng[version='>=7,<8.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] -> libgfortran-ng[version='>=7,<8.0a0'] numpy==1.20.1=py39hdbf815f_0 -> libblas[version='>=3.8.0,<4.0a0'] -> libgfortran-ng[version='>=7,<8.0a0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> libgfortran-ng[version='7.2.0.*|>=7,<8.0a0|>=7.2.0|>=4.9|>=7.2.0,<8.0a0']

    Package glib conflicts for: gst-plugins-base==1.14.0=h8213a91_2 -> gstreamer[version='>=1.14.0,<2.0a0'] -> glib[version='>=2.53.6,<2.54.0a0|>=2.56.1,<2.57.0a0|>=2.58.3,<3.0a0|>=2.58.2,<2.59.0a0|>=2.56.1,<3.0a0|>=2.53.6,<3.0a0'] qt==5.9.7=h5867ecd_1 -> dbus[version='>=1.13.2,<2.0a0'] -> glib[version='>=2.53.6,<2.54.0a0|>=2.56.1,<2.57.0a0|>=2.63.1,<3.0a0|>=2.58.3,<3.0a0|>=2.56.1,<3.0a0|>=2.53.6,<3.0a0|>=2.58.2,<2.59.0a0|>=2.66.1,<3.0a0'] gst-plugins-base==1.14.0=h8213a91_2 -> glib[version='>=2.66.1,<3.0a0'] gstreamer==1.14.0=h28cd5cc_2 -> glib[version='>=2.66.1,<3.0a0'] pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> glib[version='>=2.53.6,<2.54.0a0|>=2.56.1,<2.57.0a0|>=2.56.2,<2.57.0a0|>=2.58.3,<3.0a0|>=2.56.2,<3.0a0|>=2.56.1,<3.0a0|>=2.53.6,<3.0a0'] glib==2.67.4=h36276a3_1 qt==5.9.7=h5867ecd_1 -> glib[version='>=2.56.2,<2.57.0a0|>=2.56.2,<3.0a0'] dbus==1.13.18=hb2f20db_0 -> glib

    Package gstreamer conflicts for: pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> gstreamer[version='>=1.12.4,<1.13.0a0|>=1.14.0,<1.15.0a0|>=1.14.4,<1.15.0a0'] qt==5.9.7=h5867ecd_1 -> gst-plugins-base[version='>=1.14.0,<1.15.0a0'] -> gstreamer[version='>=1.14.0,<2.0a0|>=1.14.5,<2.0a0|>=1.14.4,<2.0a0|>=1.14.1,<2.0a0'] gst-plugins-base==1.14.0=h8213a91_2 -> gstreamer[version='>=1.14.0,<2.0a0'] qt==5.9.7=h5867ecd_1 -> gstreamer[version='>=1.14.0,<1.15.0a0'] gstreamer==1.14.0=h28cd5cc_2

    Package tornado conflicts for: tornado==6.1=py39h27cfd23_0 matplotlib-base==3.3.4=py39h62a2d02_0 -> tornado matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> tornado

    Package jpeg conflicts for: torchvision==0.9.0=py39_cu111 -> pillow[version='>=4.1.1'] -> jpeg[version='9.*|>=9b,<10a|>=9d,<10a|>=9c,<10a'] pillow==8.1.1=py39he98fc37_0 -> jpeg lcms2==2.11=h396b838_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> jpeg[version='>=9c,<10a|>=9d,<10a'] jpeg==9b=h024ee3a_2 qt==5.9.7=h5867ecd_1 -> jpeg[version='>=9b,<10a'] libtiff==4.1.0=h2733197_1 -> jpeg[version='>=9b,<10a'] pillow==8.1.1=py39he98fc37_0 -> lcms2[version='>=2.11,<3.0a0'] -> jpeg[version='>=9b,<10a|>=9d,<10a|>=9c,<10a'] matplotlib-base==3.3.4=py39h62a2d02_0 -> pillow[version='>=6.2.0'] -> jpeg[version='>=9b,<10a|>=9d,<10a|>=9c,<10a'] pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> jpeg[version='>=9b,<10a|>=9c,<10a'] torchvision==0.9.0=py39_cu111 -> jpeg[version='<=9b'] lcms2==2.11=h396b838_0 -> jpeg[version='>=9b,<10a']

    Package pyopenssl conflicts for: requests==2.25.1=pyhd3deb0d_0 -> urllib3[version='>=1.21.1,<1.27'] -> pyopenssl[version='>=0.14'] urllib3==1.26.4=pyhd8ed1ab_0 -> pyopenssl[version='>=0.14'] mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> pyopenssl[version='>=17.0.0'] docker-py==4.4.4=py39hf3d152e_0 -> pyopenssl[version='>=17.0.0'] pyopenssl==20.0.1=pyhd8ed1ab_0

    Package libxml2 conflicts for: fontconfig==2.13.1=h6c09931_0 -> libxml2[version='>=2.9.10,<2.10.0a0'] qt==5.9.7=h5867ecd_1 -> libxml2[version='>=2.9.8,<2.10.0a0'] qt==5.9.7=h5867ecd_1 -> fontconfig[version='>=2.13.0,<3.0a0'] -> libxml2[version='2.9.*|>=2.9.10,<2.10.0a0|>=2.9.7,<2.10.0a0|>=2.9.9,<2.10.0a0'] libxml2==2.9.10=hb55368b_3 pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> libxml2[version='>=2.9.7,<2.10.0a0|>=2.9.8,<2.10.0a0|>=2.9.9,<2.10.0a0']

    Package pyqt conflicts for: matplotlib==3.3.4=py39hf3d152e_0 -> pyqt pyqt==5.9.2=py39h2531618_6

    Package llvmlite conflicts for: llvmlite==0.36.0=py39h612dafd_4 numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> llvmlite=0.36

    Package liblapacke conflicts for: blas==2.108=mkl -> liblapacke==3.9.0=8_mkl pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> liblapacke[version='3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.9.0',build='6_mkl|9_mkl|10_mkl|11_mkl|13_mkl|18_mkl|20_mkl|6_mkl|7_mkl|8_mkl|5_mkl|21_mkl|19_mkl|16_mkl|15_mkl|14_mkl|12_mkl|8_mkl|7_mkl|5_mkl|4_mkl'] blas-devel==3.9.0=8_mkl -> liblapacke==3.9.0=8_mkl liblapacke==3.9.0=8_mkl

    Package liblapack conflicts for: blas==2.108=mkl -> liblapack==3.9.0=8_mkl blas-devel==3.9.0=8_mkl -> liblapack==3.9.0=8_mkl torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> liblapack[version='>=3.8.0,<4.0.0a0|>=3.8.0,<4.0a0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> liblapack[version='>=3.8.0,<4.0.0a0|>=3.8.0,<4.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] -> liblapack[version='>=3.8.0,<4.0.0a0|>=3.8.0,<4.0a0'] liblapack==3.9.0=8_mkl pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> liblapack[version='3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.8.0|3.9.0|>=3.8.0,<4.0a0|>=3.8.0,<4.0.0a0',build='6_mkl|9_mkl|10_mkl|11_mkl|13_mkl|18_mkl|20_mkl|6_mkl|7_mkl|8_mkl|5_mkl|21_mkl|19_mkl|16_mkl|15_mkl|14_mkl|12_mkl|8_mkl|7_mkl|5_mkl|4_mkl'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> liblapack[version='>=3.8.0,<4.0.0a0|>=3.8.0,<4.0a0'] liblapacke==3.9.0=8_mkl -> liblapack==3.9.0=8_mkl numpy==1.20.1=py39hdbf815f_0 -> liblapack[version='>=3.8.0,<4.0a0'] mlflow==1.2.0=py_1 -> numpy -> liblapack[version='>=3.8.0,<4.0.0a0|>=3.8.0,<4.0a0'] pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> liblapack[version='>=3.8.0,<4.0a0']

    Package openh264 conflicts for: ffmpeg==4.3=hf484d3e_0 -> openh264[version='>=2.1.0,<2.2.0a0'] torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> openh264[version='>=1.8.0,<1.9.0a0|>=2.1.0,<2.2.0a0|>=2.1.1,<2.2.0a0'] openh264==2.1.1=h780b84a_0

    Package cycler conflicts for: matplotlib-base==3.3.4=py39h62a2d02_0 -> cycler[version='>=0.10'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> cycler[version='>=0.10'] cycler==0.10.0=py39h06a4308_0

    Package mkl-devel conflicts for: blas==2.108=mkl -> blas-devel==3.9.0=8_mkl -> mkl-devel mkl-devel==2020.4=ha770c72_305 blas-devel==3.9.0=8_mkl -> mkl-devel

    Package mkl-service conflicts for: torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> mkl-service[version='>=2,<3.0a0|>=2.3.0,<3.0a0'] mlflow==1.2.0=py_1 -> numpy -> mkl-service[version='>=2,<3.0a0|>=2.3.0,<3.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> mkl-service[version='>=2,<3.0a0|>=2.3.0,<3.0a0'] pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> mkl-service[version='>=2.3.0,<3.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] -> mkl-service[version='>=2,<3.0a0|>=2.3.0,<3.0a0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> mkl-service[version='>=2,<3.0a0|>=2.3.0,<3.0a0'] kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> mkl-service[version='>=2,<3.0a0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> numpy[version='>=1.19'] -> mkl-service[version='>=2,<3.0a0|>=2.3.0,<3.0a0']

    Package freetype conflicts for: ffmpeg==4.3=hf484d3e_0 -> freetype[version='>=2.10.2,<3.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> pillow[version='>=6.2.0'] -> freetype[version='>=2.10.3,<3.0a0|>=2.9.1,<3.0a0'] qt==5.9.7=h5867ecd_1 -> fontconfig[version='>=2.13.0,<3.0a0'] -> freetype[version='2.8.1|>=2.10.4,<3.0a0|>=2.9,<3.0a0|>=2.8.1,<2.9.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> freetype[version='>=2.10.4,<3.0a0'] fontconfig==2.13.1=h6c09931_0 -> freetype[version='>=2.10.4,<3.0a0'] pillow==8.1.1=py39he98fc37_0 -> freetype[version='>=2.10.4,<3.0a0'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> freetype[version='>=2.10.4,<3.0a0'] qt==5.9.7=h5867ecd_1 -> freetype[version='>=2.9.1,<3.0a0'] torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> freetype[version='2.7|2.7.|2.7|2.8.|2.8.1|2.8.1.*|>=2.10.2,<3.0a0|>=2.10.3,<3.0a0|>=2.9.1,<3.0a0|>=2.10.4,<3.0a0|>=2.8,<2.9.0a0|>=2.8.1,<2.9.0a0'] pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> freetype[version='>=2.8,<2.9.0a0|>=2.9.1,<3.0a0'] freetype==2.10.4=h0708190_1

    Package protobuf conflicts for: protobuf==3.15.6=py39he80948d_0 mlflow==1.2.0=py_1 -> protobuf[version='>=3.6.0']

    Package cryptography-vectors conflicts for: urllib3==1.26.4=pyhd8ed1ab_0 -> cryptography[version='>=1.3.4'] -> cryptography-vectors[version='2.3.|2.3.1.'] docker-py==4.4.4=py39hf3d152e_0 -> cryptography[version='>=1.9'] -> cryptography-vectors[version='2.3.|2.3.1.']

    Package idna conflicts for: urllib3==1.26.4=pyhd8ed1ab_0 -> cryptography[version='>=1.3.4'] -> idna[version='>=2.1'] docker-py==4.4.4=py39hf3d152e_0 -> cryptography[version='>=1.9'] -> idna[version='>=2.1|>=2.5,<3|>=2.5,<2.9|>=2.5,<2.8|>=2.5,<2.7|>=2.5,<2.6'] requests==2.25.1=pyhd3deb0d_0 -> idna[version='>=2.5,<3'] databricks-cli==0.9.1=py_0 -> requests[version='>=2.17.3'] -> idna[version='>=2.5,<2.6|>=2.5,<2.7|>=2.5,<2.8|>=2.5,<2.9|>=2.5,<3'] idna==2.10=pyh9f0ad1d_0 querystring_parser==1.2.4=py_0 -> requests -> idna[version='>=2.5,<2.6|>=2.5,<2.7|>=2.5,<2.8|>=2.5,<2.9|>=2.5,<3'] urllib3==1.26.4=pyhd8ed1ab_0 -> idna[version='>=2.0.0'] requests==2.25.1=pyhd3deb0d_0 -> urllib3[version='>=1.21.1,<1.27'] -> idna[version='>=2.0.0'] mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> idna[version='>=2.5,<2.6|>=2.5,<2.7|>=2.5,<2.8|>=2.5,<2.9|>=2.5|>=2.5,<3'] docker-py==4.4.4=py39hf3d152e_0 -> idna[version='>=2.5']

    Package sqlparse conflicts for: mlflow==1.2.0=py_1 -> sqlparse sqlparse==0.4.1=pyh9f0ad1d_0

    Package mkl-include conflicts for: blas-devel==3.9.0=8_mkl -> mkl-devel -> mkl-include[version='2017.0.4|2018.0.0|2018.0.1|2018.0.2|2018.0.3|2019.0|2019.0|2019.1|2019.3|2019.4|2019.5|2020.0|2020.1|2020.1|2020.2|2020.2|2020.4|2021.1.1|2021.2.0|2021.2.0',build='hf7c01fb_0|1|1|117|118|144|199|h06a4308_296|166|h726a3e6_79|h726a3e6_389|h726a3e6_304|ha770c72_256|256|219|217|281|243|hc7b2577_4|h15fc484_2'] mkl-devel==2020.4=ha770c72_305 -> mkl-include==2020.4=h726a3e6_304 mkl-include==2020.4=h726a3e6_304

    Package expat conflicts for: pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> expat[version='>=2.2.5,<3.0.0a0|>=2.2.5,<3.0a0|>=2.2.6,<3.0a0'] qt==5.9.7=h5867ecd_1 -> expat[version='>=2.2.6,<3.0a0'] qt==5.9.7=h5867ecd_1 -> dbus[version='>=1.13.2,<2.0a0'] -> expat[version='>=2.2.10,<3.0a0|>=2.2.5,<3.0a0|>=2.3.0,<3.0.0a0|>=2.2.9,<3.0.0a0|>=2.2.5,<3.0.0a0'] expat==2.2.10=he6710b0_2 dbus==1.13.18=hb2f20db_0 -> expat[version='>=2.2.10,<3.0a0']

    Package python-dateutil conflicts for: alembic==1.5.7=pyhd8ed1ab_0 -> python-dateutil python-dateutil==2.8.1=pyhd3eb1b0_0 mlflow==1.2.0=py_1 -> python-dateutil matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> python-dateutil[version='>=2.1'] mlflow==1.2.0=py_1 -> pandas -> python-dateutil[version='>=2.5.*|>=2.6.1|>=2.7.3'] matplotlib-base==3.3.4=py39h62a2d02_0 -> python-dateutil[version='>=2.1'] pandas==1.2.3=py39hde0f152_0 -> python-dateutil[version='>=2.7.3']

    Package icu conflicts for: qt==5.9.7=h5867ecd_1 -> fontconfig[version='>=2.13.0,<3.0a0'] -> icu[version='58.*|>=64.2,<65.0a0|>=67.1,<68.0a0|>=68.1,<69.0a0'] qt==5.9.7=h5867ecd_1 -> icu[version='>=58.2,<59.0a0'] pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> icu[version='>=58.2,<59.0a0|>=64.2,<65.0a0'] libxml2==2.9.10=hb55368b_3 -> icu[version='>=58.2,<59.0a0'] icu==58.2=he6710b0_3 fontconfig==2.13.1=h6c09931_0 -> libxml2[version='>=2.9.10,<2.10.0a0'] -> icu[version='>=58.2,<59.0a0|>=68.1,<69.0a0|>=67.1,<68.0a0|>=64.2,<65.0a0']

    Package querystring_parser conflicts for: querystring_parser==1.2.4=py_0 mlflow==1.2.0=py_1 -> querystring_parser

    Package certifi conflicts for: databricks-cli==0.9.1=py_0 -> requests[version='>=2.17.3'] -> certifi[version='>=2017.4.17'] requests==2.25.1=pyhd3deb0d_0 -> urllib3[version='>=1.21.1,<1.27'] -> certifi setuptools==52.0.0=py39h06a4308_0 -> certifi[version='>=2016.9.26'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> setuptools -> certifi[version='>=2016.09|>=2016.9.26'] requests==2.25.1=pyhd3deb0d_0 -> certifi[version='>=2017.4.17'] mlflow==1.2.0=py_1 -> requests[version='>=2.17.3'] -> certifi[version='>=2017.4.17'] matplotlib-base==3.3.4=py39h62a2d02_0 -> setuptools -> certifi[version='>=2016.09|>=2016.9.26'] matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> certifi[version='>=2020.06.20'] urllib3==1.26.4=pyhd8ed1ab_0 -> certifi protobuf==3.15.6=py39he80948d_0 -> setuptools -> certifi[version='>=2016.09|>=2016.9.26'] gunicorn==20.0.4=py39hf3d152e_3 -> setuptools -> certifi[version='>=2016.09|>=2016.9.26'] matplotlib-base==3.3.4=py39h62a2d02_0 -> certifi[version='>=2020.06.20'] querystring_parser==1.2.4=py_0 -> requests -> certifi[version='>=2017.4.17'] certifi==2020.12.5=py39hf3d152e_1 pip==21.0.1=py39h06a4308_0 -> setuptools -> certifi[version='>=2016.09|>=2016.9.26'] jinja2==2.11.3=pyh44b312d_0 -> setuptools -> certifi[version='>=2016.09|>=2016.9.26'] docker-py==4.4.4=py39hf3d152e_0 -> requests[version='>=2.14.2'] -> certifi[version='>=2017.4.17']

    Package libllvm10 conflicts for: libllvm10==10.0.1=hbcb73fb_5 numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> llvmlite=0.36 -> libllvm10[version='>=10.0.1,<10.1.0a0'] llvmlite==0.36.0=py39h612dafd_4 -> libllvm10[version='>=10.0.1,<10.1.0a0']

    Package cryptography conflicts for: cryptography==3.4.6=py39hbca0aa6_0 pyopenssl==20.0.1=pyhd8ed1ab_0 -> cryptography[version='>=3.2'] docker-py==4.4.4=py39hf3d152e_0 -> cryptography[version='>=1.9'] mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> cryptography[version='>=1.9'] requests==2.25.1=pyhd3deb0d_0 -> urllib3[version='>=1.21.1,<1.27'] -> cryptography[version='>=1.3.4'] urllib3==1.26.4=pyhd8ed1ab_0 -> pyopenssl[version='>=0.14'] -> cryptography[version='>=1.3|>=1.9|>=2.1.4|>=2.2.1|>=2.8|>=3.2'] urllib3==1.26.4=pyhd8ed1ab_0 -> cryptography[version='>=1.3.4'] docker-py==4.4.4=py39hf3d152e_0 -> pyopenssl[version='>=17.0.0'] -> cryptography[version='>=2.1.4|>=2.2.1|>=2.8|>=3.2']

    Package ffmpeg conflicts for: ffmpeg==4.3=hf484d3e_0 torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2']

    Package requests conflicts for: mlflow==1.2.0=py_1 -> requests[version='>=2.17.3'] querystring_parser==1.2.4=py_0 -> requests databricks-cli==0.9.1=py_0 -> requests[version='>=2.17.3'] docker-py==4.4.4=py39hf3d152e_0 -> requests[version='>=2.14.2'] mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> requests[version='>=2.14.2'] requests==2.25.1=pyhd3deb0d_0

    Package smmap conflicts for: smmap==3.0.5=pyh44b312d_0 gitdb==4.0.5=pyhd8ed1ab_1 -> smmap[version='>=3.0.1,<4'] gitpython==3.1.14=pyhd8ed1ab_0 -> gitdb[version='>=4.0.1,<5'] -> smmap[version='>=3.0.1|>=3.0.1,<4'] mlflow==1.2.0=py_1 -> gitpython[version='>=2.1.0'] -> smmap[version='>=3.0.1,<4']

    Package configparser conflicts for: configparser==5.0.2=pyhd8ed1ab_0 databricks-cli==0.9.1=py_0 -> configparser[version='>=0.3.5'] mlflow==1.2.0=py_1 -> databricks-cli[version='>=0.8.7'] -> configparser[version='>=0.3.5|>=3.5']

    Package lcms2 conflicts for: lcms2==2.11=h396b838_0 torchvision==0.9.0=py39_cu111 -> pillow[version='>=4.1.1'] -> lcms2[version='>=2.11,<3.0a0|>=2.12,<3.0a0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> pillow[version='>=6.2.0'] -> lcms2[version='>=2.11,<3.0a0|>=2.12,<3.0a0'] pillow==8.1.1=py39he98fc37_0 -> lcms2[version='>=2.11,<3.0a0']

    Package gorilla conflicts for: gorilla==0.3.0=py_0 mlflow==1.2.0=py_1 -> gorilla

    Package libuuid conflicts for: libuuid==1.0.3=h1bed415_2 fontconfig==2.13.1=h6c09931_0 -> libuuid[version='>=1.0.3,<2.0a0'] qt==5.9.7=h5867ecd_1 -> fontconfig[version='>=2.13.0,<3.0a0'] -> libuuid[version='>=1.0.3,<2.0a0|>=2.32.1,<3.0a0']

    Package six conflicts for: docker-py==4.4.4=py39hf3d152e_0 -> six[version='>=1.10.0'] urllib3==1.26.4=pyhd8ed1ab_0 -> cryptography[version='>=1.3.4'] -> six[version='>=1.4.1|>=1.5.2'] protobuf==3.15.6=py39he80948d_0 -> six cycler==0.10.0=py39h06a4308_0 -> six docker-pycreds==0.4.0=py_0 -> six[version='>=1.4.0'] mlflow==1.2.0=py_1 -> six[version='>=1.10.0'] six==1.15.0=py39h06a4308_0 databricks-cli==0.9.1=py_0 -> six[version='>=1.10.0'] mlflow==1.2.0=py_1 -> protobuf[version='>=3.6.0'] -> six[version='>=1.5'] matplotlib-base==3.3.4=py39h62a2d02_0 -> cycler[version='>=0.10'] -> six[version='>=1.5'] pandas==1.2.3=py39hde0f152_0 -> python-dateutil[version='>=2.7.3'] -> six[version='>=1.5'] alembic==1.5.7=pyhd8ed1ab_0 -> python-dateutil -> six[version='>=1.5'] python-dateutil==2.8.1=pyhd3eb1b0_0 -> six[version='>=1.5'] docker-py==4.4.4=py39hf3d152e_0 -> cryptography[version='>=1.9'] -> six[version='>=1.4.0|>=1.4.1|>=1.5.2'] querystring_parser==1.2.4=py_0 -> six pyopenssl==20.0.1=pyhd8ed1ab_0 -> six[version='>=1.5.2'] pyopenssl==20.0.1=pyhd8ed1ab_0 -> cryptography[version='>=3.2'] -> six[version='>=1.4.1'] websocket-client==0.57.0=py39hf3d152e_4 -> six

    Package pytorch conflicts for: kornia==0.3.0=pyh9f0ad1d_0 -> pytorch torchaudio==0.8.0=py39 -> pytorch==1.8.0 pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 torchvision==0.9.0=py39_cu111 -> pytorch==1.8.0

    Package kiwisolver conflicts for: kiwisolver==1.3.1=py39h2531618_0 matplotlib==3.3.4=py39hf3d152e_0 -> matplotlib-base[version='>=3.3.4,<3.3.5.0a0'] -> kiwisolver[version='>=1.0.1'] matplotlib-base==3.3.4=py39h62a2d02_0 -> kiwisolver[version='>=1.0.1']

    Package blas-devel conflicts for: blas-devel==3.9.0=8_mkl blas==2.108=mkl -> blas-devel==3.9.0=8_mkl pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> blas-devel==3.9.0[build='7_mkl|8_mkl']

    Package numpy-base conflicts for: pandas==1.2.3=py39hde0f152_0 -> numpy[version='>=1.19.5,<2.0a0'] -> numpy-base==1.20.1[build='py37h34387ca_0|py37h7d8b39e_0|py39h34387ca_0|py38h7d8b39e_0|py39h7d8b39e_0|py38h34387ca_0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> numpy-base[version='1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.|1.17.3.|1.17.4.|1.18.1.|1.18.5.*|1.19.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.0|1.17.0|1.17.0|1.17.0',build='py36h2f8d375_0|py36hde5b4d6_0|py39hfb011de_1|py39h76555f2_1|py39h41b4c56_3|py38h41b4c56_3|py36hdc34a94_3|py37hdc34a94_3|py36h75fe3a5_0|py36hfa32c7d_0|py38hfa32c7d_0|py39h2ae0177_0|py39h0f7b65f_0|py37h34387ca_0|py37h7d8b39e_0|py39h34387ca_0|py38h7d8b39e_0|py27h7cdd4dd_0|py37h7cdd4dd_0|py35h7cdd4dd_0|py36h3dfced4_0|py35h3dfced4_0|py37h3dfced4_0|py35h74e8950_0|py27h74e8950_0|py36h74e8950_0|py37h74e8950_0|py27h81de0dd_0|py35h81de0dd_0|py37h2f8d375_0|py27h2f8d375_0|py27h81de0dd_0|py35h81de0dd_0|py36h2f8d375_0|py36h81de0dd_0|py36h2f8d375_1|py27h81de0dd_1|py37h81de0dd_1|py27h2f8d375_0|py36h2f8d375_0|py27h81de0dd_0|py36h81de0dd_0|py36h2f8d375_0|py36h81de0dd_0|py27hde5b4d6_0|py36hde5b4d6_0|py27h2f8d375_0|py27hde5b4d6_0|py37h2f8d375_1|py36h2f8d375_1|py37hde5b4d6_1|py27h2f8d375_0|py36h2f8d375_0|py36hde5b4d6_0|py27hde5b4d6_0|py27h2f8d375_1|py37h2f8d375_1|py37hde5b4d6_1|py36hde5b4d6_1|py27hde5b4d6_0|py36hde5b4d6_0|py37h2f8d375_0|py36h2f8d375_0|py27hde5b4d6_0|py36hde5b4d6_0|py27h2f8d375_0|py36h2f8d375_0|py37h2f8d375_0|py27h2f8d375_0|py27hde5b4d6_0|py36hde5b4d6_0|py36hde5b4d6_0|py38h2f8d375_0|py27h2f8d375_0|py27hde5b4d6_0|py38h75fe3a5_0|py38hfa32c7d_0|py36h75fe3a5_0|py37h75fe3a5_0|py36hfa32c7d_0|py37hfa32c7d_0|py38hde5b4d6_0|py37hde5b4d6_0|py36h2f8d375_0|py37h2f8d375_0|py37hde5b4d6_0|py37h2f8d375_0|py36h2f8d375_0|py36hde5b4d6_0|py27hde5b4d6_0|py37hde5b4d6_0|py37hde5b4d6_0|py27h2f8d375_0|py37hde5b4d6_0|py27h2f8d375_0|py36h2f8d375_0|py37h2f8d375_0|py27hde5b4d6_1|py36h2f8d375_1|py37hde5b4d6_0|py37h2f8d375_0|py36hde5b4d6_1|py27hde5b4d6_1|py27h2f8d375_1|py36hde5b4d6_0|py36h2f8d375_0|py37hde5b4d6_0|py37h2f8d375_0|py37hde5b4d6_0|py27h81de0dd_0|py37h81de0dd_0|py27h2f8d375_0|py37h2f8d375_0|py37h81de0dd_0|py37h2f8d375_0|py37h2f8d375_1|py36h81de0dd_1|py27h2f8d375_1|py35h2f8d375_0|py37h81de0dd_0|py37h2f8d375_0|py36h2f8d375_0|py27h2f8d375_0|py35h2f8d375_0|py37h81de0dd_0|py36h81de0dd_0|py27h3dfced4_0|py36h7cdd4dd_0|py39h7d8b39e_0|py38h34387ca_0|py37h75fe3a5_0|py38h75fe3a5_0|py37hfa32c7d_0|py39hdc34a94_3|py38hdc34a94_3|py36h41b4c56_3|py37h41b4c56_3|py37hde5b4d6_0|py37h2f8d375_0'] mlflow==1.2.0=py_1 -> numpy -> numpy-base[version='1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.|1.17.3.|1.17.4.|1.18.1.|1.18.5.*|1.19.1|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|>=1.9.3,<2.0a0|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.0|1.17.0|1.17.0|1.17.0',build='py36hde5b4d6_0|py39h76555f2_1|py39h41b4c56_3|py38h41b4c56_3|py37h41b4c56_3|py36hdc34a94_3|py39hdc34a94_3|py39h2ae0177_0|py39h0f7b65f_0|py37h34387ca_0|py37h7d8b39e_0|py39h34387ca_0|py38h34387ca_0|py38h7d8b39e_0|py39h7d8b39e_0|py36h2b20989_6|py37h2b20989_6|py27hdbf6ddf_6|py27h2b20989_7|py36hdbf6ddf_7|py36h2b20989_7|py35h2b20989_7|py37hdbf6ddf_7|py37h2b20989_7|py37h2b20989_7|py27h2b20989_7|py36hdbf6ddf_7|py37hdbf6ddf_7|py36hdbf6ddf_8|py36h2b20989_8|py37hdbf6ddf_8|py37h2b20989_8|py35hdbf6ddf_8|py35h2b20989_8|py36h7cdd4dd_9|py27h7cdd4dd_9|py37h7cdd4dd_9|py37h3dfced4_9|py35h3dfced4_9|py35h74e8950_9|py27h81de0dd_9|py35h81de0dd_9|py37h74e8950_10|py35h74e8950_10|py27h74e8950_10|py35h81de0dd_10|py27h2f8d375_10|py36h2f8d375_11|py36hde5b4d6_11|py37hde5b4d6_11|py27hde5b4d6_11|py27h2f8d375_12|py27hde5b4d6_12|py35h0ea5e3f_1|py36h9be14a7_1|py27h9be14a7_1|py35h9be14a7_1|py35h2b20989_0|py27hdbf6ddf_0|py36hdbf6ddf_0|py35hdbf6ddf_0|py36hdbf6ddf_0|py27hdbf6ddf_0|py36h2b20989_1|py37h2b20989_1|py37hdbf6ddf_1|py27h2b20989_1|py27h2b20989_2|py36h2b20989_2|py37h2b20989_3|py36hdbf6ddf_3|py27hdbf6ddf_3|py27h2b20989_4|py27hdbf6ddf_4|py37h2b20989_4|py36hdbf6ddf_4|py35hdbf6ddf_4|py35h2b20989_4|py37h2f8d375_4|py36h2f8d375_4|py37h2f8d375_5|py27hde5b4d6_5|py27h7cdd4dd_0|py37h7cdd4dd_0|py35h7cdd4dd_0|py36h3dfced4_0|py35h3dfced4_0|py37h3dfced4_0|py35h74e8950_0|py27h74e8950_0|py36h74e8950_0|py37h74e8950_0|py27h81de0dd_0|py35h81de0dd_0|py37h2f8d375_0|py27h2f8d375_0|py27h81de0dd_0|py35h81de0dd_0|py36h2f8d375_0|py36h81de0dd_0|py36h2f8d375_1|py27h81de0dd_1|py37h81de0dd_1|py27h2f8d375_0|py36h2f8d375_0|py27h81de0dd_0|py36h81de0dd_0|py36h2f8d375_0|py36h81de0dd_0|py27hde5b4d6_0|py36hde5b4d6_0|py27h2f8d375_0|py27hde5b4d6_0|py37h2f8d375_1|py36h2f8d375_1|py37hde5b4d6_1|py27h2f8d375_0|py36h2f8d375_0|py36hde5b4d6_0|py27hde5b4d6_0|py27h2f8d375_1|py37h2f8d375_1|py37hde5b4d6_1|py36hde5b4d6_1|py27hde5b4d6_0|py36hde5b4d6_0|py37h2f8d375_0|py36h2f8d375_0|py27hde5b4d6_0|py36hde5b4d6_0|py27h2f8d375_0|py36h2f8d375_0|py37h2f8d375_0|py27h2f8d375_0|py27hde5b4d6_0|py36hde5b4d6_0|py36hde5b4d6_0|py38h2f8d375_0|py27h2f8d375_0|py27hde5b4d6_0|py38h75fe3a5_0|py38hfa32c7d_0|py36h75fe3a5_0|py37h75fe3a5_0|py36hfa32c7d_0|py37hfa32c7d_0|py38hde5b4d6_0|py37hde5b4d6_0|py36h2f8d375_0|py37h2f8d375_0|py37hde5b4d6_0|py37h2f8d375_0|py36h2f8d375_0|py36hde5b4d6_0|py27hde5b4d6_0|py37hde5b4d6_0|py37hde5b4d6_0|py27h2f8d375_0|py37hde5b4d6_0|py27h2f8d375_0|py36h2f8d375_0|py37h2f8d375_0|py27hde5b4d6_1|py36h2f8d375_1|py37hde5b4d6_0|py37h2f8d375_0|py36hde5b4d6_1|py27hde5b4d6_1|py27h2f8d375_1|py36hde5b4d6_0|py36h2f8d375_0|py37hde5b4d6_0|py37h2f8d375_0|py37hde5b4d6_0|py27h81de0dd_0|py37h81de0dd_0|py27h2f8d375_0|py37h2f8d375_0|py37h81de0dd_0|py37h2f8d375_0|py37h2f8d375_1|py36h81de0dd_1|py27h2f8d375_1|py35h2f8d375_0|py37h81de0dd_0|py37h2f8d375_0|py36h2f8d375_0|py27h2f8d375_0|py35h2f8d375_0|py37h81de0dd_0|py36h81de0dd_0|py27h3dfced4_0|py36h7cdd4dd_0|py36hde5b4d6_5|py37hde5b4d6_5|py27h2f8d375_5|py36h2f8d375_5|py38hde5b4d6_4|py38h2f8d375_4|py36h81de0dd_4|py37h81de0dd_4|py35h81de0dd_4|py27h2f8d375_4|py27h81de0dd_4|py35h2f8d375_4|py36h2b20989_4|py37hdbf6ddf_4|py27h2b20989_3|py37hdbf6ddf_3|py36h2b20989_3|py36hdbf6ddf_2|py37hdbf6ddf_2|py27hdbf6ddf_2|py37h2b20989_2|py36hdbf6ddf_1|py27hdbf6ddf_1|py35hdbf6ddf_0|py27h2b20989_0|py36h2b20989_0|py36h2b20989_0|py27h2b20989_0|py27h0ea5e3f_1|py36h0ea5e3f_1|py38h2f8d375_12|py38hde5b4d6_12|py36hde5b4d6_12|py37hde5b4d6_12|py36h2f8d375_12|py37h2f8d375_12|py27h2f8d375_11|py37h2f8d375_11|py35h2f8d375_10|py36h2f8d375_10|py37h2f8d375_10|py36h81de0dd_10|py37h81de0dd_10|py27h81de0dd_10|py36h74e8950_10|py36h74e8950_9|py37h74e8950_9|py27h74e8950_9|py37h81de0dd_9|py36h81de0dd_9|py27h3dfced4_9|py36h3dfced4_9|py35h7cdd4dd_9|py27hdbf6ddf_8|py27h2b20989_8|py27hdbf6ddf_7|py36h2b20989_7|py35hdbf6ddf_7|py27hdbf6ddf_7|py36hdbf6ddf_6|py37hdbf6ddf_6|py27h2b20989_6|py38hfa32c7d_0|py36hfa32c7d_0|py36h75fe3a5_0|py37h75fe3a5_0|py38h75fe3a5_0|py37hfa32c7d_0|py37hdc34a94_3|py38hdc34a94_3|py36h41b4c56_3|py39hfb011de_1|py37hde5b4d6_0|py37h2f8d375_0|py36h2f8d375_0'] matplotlib-base==3.3.4=py39h62a2d02_0 -> numpy[version='>=1.16.6,<2.0a0'] -> numpy-base[version='1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.|1.17.3.|1.17.4.|1.18.1.|1.18.5.*|1.19.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.17.0|1.17.0|1.17.0|1.17.0',build='py37h2f8d375_0|py36hde5b4d6_0|py39h76555f2_1|py39h41b4c56_3|py37h41b4c56_3|py38hdc34a94_3|py37hfa32c7d_0|py36h75fe3a5_0|py38hfa32c7d_0|py37h34387ca_0|py37h7d8b39e_0|py38h7d8b39e_0|py39h7d8b39e_0|py36hde5b4d6_0|py38h2f8d375_0|py27h2f8d375_0|py27hde5b4d6_0|py38h75fe3a5_0|py38hfa32c7d_0|py36h75fe3a5_0|py37h75fe3a5_0|py36hfa32c7d_0|py37hfa32c7d_0|py38hde5b4d6_0|py37hde5b4d6_0|py36h2f8d375_0|py37h2f8d375_0|py38h34387ca_0|py39h34387ca_0|py39h0f7b65f_0|py39h2ae0177_0|py36hfa32c7d_0|py37h75fe3a5_0|py38h75fe3a5_0|py37hdc34a94_3|py39hdc34a94_3|py36hdc34a94_3|py36h41b4c56_3|py38h41b4c56_3|py39hfb011de_1|py37hde5b4d6_0|py36h2f8d375_0'] pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> numpy[version='>=1.19'] -> numpy-base[version='1.19.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2',build='py37hfa32c7d_0|py37h75fe3a5_0|py36h75fe3a5_0|py38hfa32c7d_0|py39h2ae0177_0|py39h0f7b65f_0|py37h34387ca_0|py37h7d8b39e_0|py38h7d8b39e_0|py39h7d8b39e_0|py38h75fe3a5_0|py38hfa32c7d_0|py36h75fe3a5_0|py37h75fe3a5_0|py36hfa32c7d_0|py37hfa32c7d_0|py38h34387ca_0|py39h34387ca_0|py36hfa32c7d_0|py38h75fe3a5_0'] torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> numpy-base[version='1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.|1.17.3.|1.17.4.|1.18.1.|1.18.5.*|1.19.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.0|1.17.0|1.17.0|1.17.0',build='py36h2f8d375_0|py36hde5b4d6_0|py39h76555f2_1|py39h41b4c56_3|py38h41b4c56_3|py37h41b4c56_3|py38h75fe3a5_0|py36h75fe3a5_0|py36hfa32c7d_0|py37h34387ca_0|py37h7d8b39e_0|py38h7d8b39e_0|py39h7d8b39e_0|py37h2b20989_7|py27h2b20989_7|py36hdbf6ddf_7|py37hdbf6ddf_7|py36hdbf6ddf_8|py36h2b20989_8|py37hdbf6ddf_8|py37h2b20989_8|py35hdbf6ddf_8|py35h2b20989_8|py36h7cdd4dd_9|py27h7cdd4dd_9|py37h7cdd4dd_9|py37h3dfced4_9|py35h3dfced4_9|py35h74e8950_9|py27h81de0dd_9|py35h81de0dd_9|py37h74e8950_10|py35h74e8950_10|py27h74e8950_10|py35h81de0dd_10|py27h2f8d375_10|py36h2f8d375_11|py36hde5b4d6_11|py37hde5b4d6_11|py27hde5b4d6_11|py27h2f8d375_12|py27hde5b4d6_12|py35h0ea5e3f_1|py36h9be14a7_1|py27h9be14a7_1|py35h9be14a7_1|py35h2b20989_0|py27hdbf6ddf_0|py36hdbf6ddf_0|py35hdbf6ddf_0|py36hdbf6ddf_0|py27hdbf6ddf_0|py36h2b20989_1|py37h2b20989_1|py37hdbf6ddf_1|py27h2b20989_1|py27h2b20989_2|py36h2b20989_2|py37h2b20989_3|py36hdbf6ddf_3|py27hdbf6ddf_3|py27h2b20989_4|py27hdbf6ddf_4|py37h2b20989_4|py36hdbf6ddf_4|py35hdbf6ddf_4|py35h2b20989_4|py37h2f8d375_4|py36h2f8d375_4|py37h2f8d375_5|py27hde5b4d6_5|py27h7cdd4dd_0|py37h7cdd4dd_0|py35h7cdd4dd_0|py36h3dfced4_0|py35h3dfced4_0|py37h3dfced4_0|py35h74e8950_0|py27h74e8950_0|py36h74e8950_0|py37h74e8950_0|py27h81de0dd_0|py35h81de0dd_0|py37h2f8d375_0|py27h2f8d375_0|py27h81de0dd_0|py35h81de0dd_0|py36h2f8d375_0|py36h81de0dd_0|py36h2f8d375_1|py27h81de0dd_1|py37h81de0dd_1|py27h2f8d375_0|py36h2f8d375_0|py27h81de0dd_0|py36h81de0dd_0|py36h2f8d375_0|py36h81de0dd_0|py27hde5b4d6_0|py36hde5b4d6_0|py27h2f8d375_0|py27hde5b4d6_0|py37h2f8d375_1|py36h2f8d375_1|py37hde5b4d6_1|py27h2f8d375_0|py36h2f8d375_0|py36hde5b4d6_0|py27hde5b4d6_0|py27h2f8d375_1|py37h2f8d375_1|py37hde5b4d6_1|py36hde5b4d6_1|py27hde5b4d6_0|py36hde5b4d6_0|py37h2f8d375_0|py36h2f8d375_0|py27hde5b4d6_0|py36hde5b4d6_0|py27h2f8d375_0|py36h2f8d375_0|py37h2f8d375_0|py27h2f8d375_0|py27hde5b4d6_0|py36hde5b4d6_0|py36hde5b4d6_0|py38h2f8d375_0|py27h2f8d375_0|py27hde5b4d6_0|py38h75fe3a5_0|py38hfa32c7d_0|py36h75fe3a5_0|py37h75fe3a5_0|py36hfa32c7d_0|py37hfa32c7d_0|py38hde5b4d6_0|py37hde5b4d6_0|py36h2f8d375_0|py37h2f8d375_0|py37hde5b4d6_0|py37h2f8d375_0|py36h2f8d375_0|py36hde5b4d6_0|py27hde5b4d6_0|py37hde5b4d6_0|py37hde5b4d6_0|py27h2f8d375_0|py37hde5b4d6_0|py27h2f8d375_0|py36h2f8d375_0|py37h2f8d375_0|py27hde5b4d6_1|py36h2f8d375_1|py37hde5b4d6_0|py37h2f8d375_0|py36hde5b4d6_1|py27hde5b4d6_1|py27h2f8d375_1|py36hde5b4d6_0|py36h2f8d375_0|py37hde5b4d6_0|py37h2f8d375_0|py37hde5b4d6_0|py27h81de0dd_0|py37h81de0dd_0|py27h2f8d375_0|py37h2f8d375_0|py37h81de0dd_0|py37h2f8d375_0|py37h2f8d375_1|py36h81de0dd_1|py27h2f8d375_1|py35h2f8d375_0|py37h81de0dd_0|py37h2f8d375_0|py36h2f8d375_0|py27h2f8d375_0|py35h2f8d375_0|py37h81de0dd_0|py36h81de0dd_0|py27h3dfced4_0|py36h7cdd4dd_0|py36hde5b4d6_5|py37hde5b4d6_5|py27h2f8d375_5|py36h2f8d375_5|py38hde5b4d6_4|py38h2f8d375_4|py36h81de0dd_4|py37h81de0dd_4|py35h81de0dd_4|py27h2f8d375_4|py27h81de0dd_4|py35h2f8d375_4|py36h2b20989_4|py37hdbf6ddf_4|py27h2b20989_3|py37hdbf6ddf_3|py36h2b20989_3|py36hdbf6ddf_2|py37hdbf6ddf_2|py27hdbf6ddf_2|py37h2b20989_2|py36hdbf6ddf_1|py27hdbf6ddf_1|py35hdbf6ddf_0|py27h2b20989_0|py36h2b20989_0|py36h2b20989_0|py27h2b20989_0|py27h0ea5e3f_1|py36h0ea5e3f_1|py38h2f8d375_12|py38hde5b4d6_12|py36hde5b4d6_12|py37hde5b4d6_12|py36h2f8d375_12|py37h2f8d375_12|py27h2f8d375_11|py37h2f8d375_11|py35h2f8d375_10|py36h2f8d375_10|py37h2f8d375_10|py36h81de0dd_10|py37h81de0dd_10|py27h81de0dd_10|py36h74e8950_10|py36h74e8950_9|py37h74e8950_9|py27h74e8950_9|py37h81de0dd_9|py36h81de0dd_9|py27h3dfced4_9|py36h3dfced4_9|py35h7cdd4dd_9|py27hdbf6ddf_8|py27h2b20989_8|py27hdbf6ddf_7|py36h2b20989_7|py38h34387ca_0|py39h34387ca_0|py39h0f7b65f_0|py39h2ae0177_0|py38hfa32c7d_0|py37h75fe3a5_0|py37hfa32c7d_0|py37hdc34a94_3|py39hdc34a94_3|py38hdc34a94_3|py36hdc34a94_3|py36h41b4c56_3|py39hfb011de_1|py37hde5b4d6_0|py37h2f8d375_0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> numpy-base[version='1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.|1.17.3.|1.17.4.|1.18.1.|1.18.5.*|1.19.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.20.1|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.19.2|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.0|1.17.0|1.17.0|1.17.0',build='py36h2f8d375_0|py36hde5b4d6_0|py39h76555f2_1|py39h41b4c56_3|py38h41b4c56_3|py37h41b4c56_3|py38h75fe3a5_0|py36h75fe3a5_0|py36hfa32c7d_0|py37h34387ca_0|py37h7d8b39e_0|py38h7d8b39e_0|py39h7d8b39e_0|py37h2b20989_7|py27h2b20989_7|py36hdbf6ddf_7|py37hdbf6ddf_7|py36hdbf6ddf_8|py36h2b20989_8|py37hdbf6ddf_8|py37h2b20989_8|py35hdbf6ddf_8|py35h2b20989_8|py36h7cdd4dd_9|py27h7cdd4dd_9|py37h7cdd4dd_9|py37h3dfced4_9|py35h3dfced4_9|py35h74e8950_9|py27h81de0dd_9|py35h81de0dd_9|py37h74e8950_10|py35h74e8950_10|py27h74e8950_10|py35h81de0dd_10|py27h2f8d375_10|py36h2f8d375_11|py36hde5b4d6_11|py37hde5b4d6_11|py27hde5b4d6_11|py27h2f8d375_12|py27hde5b4d6_12|py35h0ea5e3f_1|py36h9be14a7_1|py27h9be14a7_1|py35h9be14a7_1|py35h2b20989_0|py27hdbf6ddf_0|py36hdbf6ddf_0|py35hdbf6ddf_0|py36hdbf6ddf_0|py27hdbf6ddf_0|py36h2b20989_1|py37h2b20989_1|py37hdbf6ddf_1|py27h2b20989_1|py27h2b20989_2|py36h2b20989_2|py37h2b20989_3|py36hdbf6ddf_3|py27hdbf6ddf_3|py27h2b20989_4|py27hdbf6ddf_4|py37h2b20989_4|py36hdbf6ddf_4|py35hdbf6ddf_4|py35h2b20989_4|py37h2f8d375_4|py36h2f8d375_4|py37h2f8d375_5|py27hde5b4d6_5|py27h7cdd4dd_0|py37h7cdd4dd_0|py35h7cdd4dd_0|py36h3dfced4_0|py35h3dfced4_0|py37h3dfced4_0|py35h74e8950_0|py27h74e8950_0|py36h74e8950_0|py37h74e8950_0|py27h81de0dd_0|py35h81de0dd_0|py37h2f8d375_0|py27h2f8d375_0|py27h81de0dd_0|py35h81de0dd_0|py36h2f8d375_0|py36h81de0dd_0|py36h2f8d375_1|py27h81de0dd_1|py37h81de0dd_1|py27h2f8d375_0|py36h2f8d375_0|py27h81de0dd_0|py36h81de0dd_0|py36h2f8d375_0|py36h81de0dd_0|py27hde5b4d6_0|py36hde5b4d6_0|py27h2f8d375_0|py27hde5b4d6_0|py37h2f8d375_1|py36h2f8d375_1|py37hde5b4d6_1|py27h2f8d375_0|py36h2f8d375_0|py36hde5b4d6_0|py27hde5b4d6_0|py27h2f8d375_1|py37h2f8d375_1|py37hde5b4d6_1|py36hde5b4d6_1|py27hde5b4d6_0|py36hde5b4d6_0|py37h2f8d375_0|py36h2f8d375_0|py27hde5b4d6_0|py36hde5b4d6_0|py27h2f8d375_0|py36h2f8d375_0|py37h2f8d375_0|py27h2f8d375_0|py27hde5b4d6_0|py36hde5b4d6_0|py36hde5b4d6_0|py38h2f8d375_0|py27h2f8d375_0|py27hde5b4d6_0|py38h75fe3a5_0|py38hfa32c7d_0|py36h75fe3a5_0|py37h75fe3a5_0|py36hfa32c7d_0|py37hfa32c7d_0|py38hde5b4d6_0|py37hde5b4d6_0|py36h2f8d375_0|py37h2f8d375_0|py37hde5b4d6_0|py37h2f8d375_0|py36h2f8d375_0|py36hde5b4d6_0|py27hde5b4d6_0|py37hde5b4d6_0|py37hde5b4d6_0|py27h2f8d375_0|py37hde5b4d6_0|py27h2f8d375_0|py36h2f8d375_0|py37h2f8d375_0|py27hde5b4d6_1|py36h2f8d375_1|py37hde5b4d6_0|py37h2f8d375_0|py36hde5b4d6_1|py27hde5b4d6_1|py27h2f8d375_1|py36hde5b4d6_0|py36h2f8d375_0|py37hde5b4d6_0|py37h2f8d375_0|py37hde5b4d6_0|py27h81de0dd_0|py37h81de0dd_0|py27h2f8d375_0|py37h2f8d375_0|py37h81de0dd_0|py37h2f8d375_0|py37h2f8d375_1|py36h81de0dd_1|py27h2f8d375_1|py35h2f8d375_0|py37h81de0dd_0|py37h2f8d375_0|py36h2f8d375_0|py27h2f8d375_0|py35h2f8d375_0|py37h81de0dd_0|py36h81de0dd_0|py27h3dfced4_0|py36h7cdd4dd_0|py36hde5b4d6_5|py37hde5b4d6_5|py27h2f8d375_5|py36h2f8d375_5|py38hde5b4d6_4|py38h2f8d375_4|py36h81de0dd_4|py37h81de0dd_4|py35h81de0dd_4|py27h2f8d375_4|py27h81de0dd_4|py35h2f8d375_4|py36h2b20989_4|py37hdbf6ddf_4|py27h2b20989_3|py37hdbf6ddf_3|py36h2b20989_3|py36hdbf6ddf_2|py37hdbf6ddf_2|py27hdbf6ddf_2|py37h2b20989_2|py36hdbf6ddf_1|py27hdbf6ddf_1|py35hdbf6ddf_0|py27h2b20989_0|py36h2b20989_0|py36h2b20989_0|py27h2b20989_0|py27h0ea5e3f_1|py36h0ea5e3f_1|py38h2f8d375_12|py38hde5b4d6_12|py36hde5b4d6_12|py37hde5b4d6_12|py36h2f8d375_12|py37h2f8d375_12|py27h2f8d375_11|py37h2f8d375_11|py35h2f8d375_10|py36h2f8d375_10|py37h2f8d375_10|py36h81de0dd_10|py37h81de0dd_10|py27h81de0dd_10|py36h74e8950_10|py36h74e8950_9|py37h74e8950_9|py27h74e8950_9|py37h81de0dd_9|py36h81de0dd_9|py27h3dfced4_9|py36h3dfced4_9|py35h7cdd4dd_9|py27hdbf6ddf_8|py27h2b20989_8|py27hdbf6ddf_7|py36h2b20989_7|py38h34387ca_0|py39h34387ca_0|py39h0f7b65f_0|py39h2ae0177_0|py38hfa32c7d_0|py37h75fe3a5_0|py37hfa32c7d_0|py37hdc34a94_3|py39hdc34a94_3|py38hdc34a94_3|py36hdc34a94_3|py36h41b4c56_3|py39hfb011de_1|py37hde5b4d6_0|py37h2f8d375_0']

    Package gst-plugins-base conflicts for: qt==5.9.7=h5867ecd_1 -> gst-plugins-base[version='>=1.14.0,<1.15.0a0'] gst-plugins-base==1.14.0=h8213a91_2 pyqt==5.9.2=py39h2531618_6 -> qt=5.9 -> gst-plugins-base[version='>=1.12.4,<1.13.0a0|>=1.14.0,<1.15.0a0|>=1.14.4,<1.15.0a0']

    Package gitdb conflicts for: gitdb==4.0.5=pyhd8ed1ab_1 gitpython==3.1.14=pyhd8ed1ab_0 -> gitdb[version='>=4.0.1,<5'] mlflow==1.2.0=py_1 -> gitpython[version='>=2.1.0'] -> gitdb[version='>=0.6.4|>=4.0.1,<5']

    Package sip conflicts for: pyqt==5.9.2=py39h2531618_6 -> sip=4.19.13 matplotlib==3.3.4=py39hf3d152e_0 -> pyqt -> sip[version='4.18|4.18.|>=4.19.4|>=4.19.4,<=4.19.8|4.19.13.|>=4.19.13,<=4.19.14'] sip==4.19.13=py39h2531618_0

    Package pcre conflicts for: gst-plugins-base==1.14.0=h8213a91_2 -> glib[version='>=2.66.1,<3.0a0'] -> pcre[version='>=8.41,<9.0a0|>=8.42,<9.0a0|>=8.44,<9.0a0|>=8.43,<9.0a0'] pcre==8.44=he6710b0_0 qt==5.9.7=h5867ecd_1 -> glib[version='>=2.56.2,<2.57.0a0'] -> pcre[version='>=8.41,<9.0a0|>=8.42,<9.0a0|>=8.43,<9.0a0|>=8.44,<9.0a0'] dbus==1.13.18=hb2f20db_0 -> glib -> pcre[version='>=8.41,<9.0a0|>=8.42,<9.0a0|>=8.43,<9.0a0|>=8.44,<9.0a0'] glib==2.67.4=h36276a3_1 -> pcre[version='>=8.44,<9.0a0'] gstreamer==1.14.0=h28cd5cc_2 -> glib[version='>=2.66.1,<3.0a0'] -> pcre[version='>=8.44,<9.0a0']

    Package lame conflicts for: lame==3.100=h7f98852_1001 torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> lame[version='>=3.100,<3.101.0a0'] ffmpeg==4.3=hf484d3e_0 -> lame[version='>=3.100,<3.101.0a0']

    Package flask conflicts for: flask==1.1.2=pyh9f0ad1d_0 mlflow==1.2.0=py_1 -> flask

    Package libgfortran conflicts for: torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> libgfortran[version='>=3.0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> libgfortran[version='>=3.0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> libgfortran[version='>=3.0'] mlflow==1.2.0=py_1 -> numpy -> libgfortran[version='>=3.0']

    Package asn1crypto conflicts for: mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> asn1crypto[version='>=0.22.0'] urllib3==1.26.4=pyhd8ed1ab_0 -> cryptography[version='>=1.3.4'] -> asn1crypto[version='>=0.21.0'] asn1crypto==1.4.0=pyh9f0ad1d_0 docker-py==4.4.4=py39hf3d152e_0 -> cryptography[version='>=1.9'] -> asn1crypto[version='>=0.21.0'] docker-py==4.4.4=py39hf3d152e_0 -> asn1crypto[version='>=0.22.0']

    Package click conflicts for: click==7.1.2=py_0 flask==1.1.2=pyh9f0ad1d_0 -> click[version='>=5.1'] mlflow==1.2.0=py_1 -> click[version='>=7.0'] mlflow==1.2.0=py_1 -> databricks-cli[version='>=0.8.7'] -> click[version='>=2.0|>=5.1|>=6.7'] databricks-cli==0.9.1=py_0 -> click[version='>=6.7']

    Package typing conflicts for: kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> typing pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> typing_extensions -> typing[version='>=3.6.2|>=3.7.4']

    Package olefile conflicts for: torchvision==0.9.0=py39_cu111 -> pillow[version='>=4.1.1'] -> olefile matplotlib-base==3.3.4=py39h62a2d02_0 -> pillow[version='>=6.2.0'] -> olefile olefile==0.46=pyh9f0ad1d_1 pillow==8.1.1=py39he98fc37_0 -> olefile

    Package libwebp-base conflicts for: pillow==8.1.1=py39he98fc37_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> libwebp-base[version='>=1.1.0,<1.2.0a0'] lcms2==2.11=h396b838_0 -> libtiff[version='>=4.1.0,<5.0a0'] -> libwebp-base[version='>=1.1.0,<1.2.0a0']

    Package libgfortran4 conflicts for: pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> blas=[build=mkl] -> libgfortran4[version='>=7.5.0'] blas==2.108=mkl -> libgfortran-ng -> libgfortran4=7.5.0 numpy==1.20.1=py39hdbf815f_0 -> libblas[version='>=3.8.0,<4.0a0'] -> libgfortran4[version='>=7.5.0']

    Package openblas conflicts for: torchaudio==0.8.0=py39 -> numpy[version='>=1.11'] -> openblas[version='0.2.18.|0.2.18|0.2.18.|0.2.19|0.2.19.|0.2.20|0.2.20.|>=0.2.20,<0.2.21.0a0|>=0.3.3,<0.3.4.0a0|>=0.2.15'] mlflow==1.2.0=py_1 -> numpy -> openblas[version='0.2.18.|0.2.18|0.2.18.|0.2.19|0.2.19.|0.2.20|0.2.20.|>=0.2.20,<0.2.21.0a0|>=0.3.3,<0.3.4.0a0|>=0.2.15'] numpy==1.20.1=py39hdbf815f_0 -> libblas[version='>=3.8.0,<4.0a0'] -> openblas[version='0.3.5.*|>=0.3.6,<0.3.7.0a0'] numba==0.53.0rc3=np1.16py3.9hc547734_g1c882cbbf_0 -> numpy[version='>=1.15'] -> openblas[version='>=0.2.20,<0.2.21.0a0|>=0.3.3,<0.3.4.0a0'] torchvision==0.9.0=py39_cu111 -> numpy[version='>=1.11'] -> openblas[version='0.2.18.|0.2.18|0.2.18.|0.2.19|0.2.19.|0.2.20|0.2.20.|>=0.2.20,<0.2.21.0a0|>=0.3.3,<0.3.4.0a0|>=0.2.15']

    Package libiconv conflicts for: gstreamer==1.14.0=h28cd5cc_2 -> glib[version='>=2.66.1,<3.0a0'] -> libiconv[version='>=1.16,<1.17.0a0'] libiconv==1.16=h516909a_0 ffmpeg==4.3=hf484d3e_0 -> libiconv gst-plugins-base==1.14.0=h8213a91_2 -> glib[version='>=2.66.1,<3.0a0'] -> libiconv[version='>=1.16,<1.17.0a0'] qt==5.9.7=h5867ecd_1 -> fontconfig[version='>=2.13.0,<3.0a0'] -> libiconv[version='1.15|>=1.15,<1.17.0a0|>=1.16,<1.17.0a0'] torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> libiconv[version='>=1.15,<1.17.0a0|>=1.16,<1.17.0a0'] fontconfig==2.13.1=h6c09931_0 -> libxml2[version='>=2.9.10,<2.10.0a0'] -> libiconv[version='>=1.15,<1.17.0a0|>=1.16,<1.17.0a0'] dbus==1.13.18=hb2f20db_0 -> glib -> libiconv[version='1.15|>=1.15,<1.17.0a0|>=1.16,<1.17.0a0']

    Package entrypoints conflicts for: entrypoints==0.3=pyhd8ed1ab_1003 mlflow==1.2.0=py_1 -> entrypoints

    Package pandas conflicts for: pandas==1.2.3=py39hde0f152_0 mlflow==1.2.0=py_1 -> pandas

    Package libuv conflicts for: torchaudio==0.8.0=py39 -> pytorch==1.8.0 -> libuv[version='>=1.40.0,<2.0a0'] kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> libuv[version='>=1.40.0,<2.0a0'] torchvision==0.9.0=py39_cu111 -> pytorch==1.8.0 -> libuv[version='>=1.40.0,<2.0a0']

    Package gunicorn conflicts for: gunicorn==20.0.4=py39hf3d152e_3 mlflow==1.2.0=py_1 -> gunicorn

    Package gmp conflicts for: ffmpeg==4.3=hf484d3e_0 -> gmp[version='>=6.1.2'] gmp==6.2.1=h58526e2_0 torchvision==0.9.0=py39_cu111 -> ffmpeg[version='>=4.2'] -> gmp[version='>=6.1.2,<7.0a0|>=6.1.2|>=6.2.1,<7.0a0|>=6.2.0,<7.0a0'] gnutls==3.6.13=h85f3911_1 -> nettle[version='>=3.4.1'] -> gmp[version='>=6.1.2']

    Package pytz conflicts for: pytz==2021.1=pyhd8ed1ab_0 pandas==1.2.3=py39hde0f152_0 -> pytz[version='>=2017.2'] mlflow==1.2.0=py_1 -> pandas -> pytz[version='>=2017.2|>=2017.3']

    Package simplejson conflicts for: mlflow==1.2.0=py_1 -> simplejson simplejson==3.17.2=py39h3811e60_2

    Package yaml conflicts for: pyyaml==5.4.1=py39h3811e60_0 -> yaml[version='>=0.2.5,<0.3.0a0'] yaml==0.2.5=h7b6447c_0 mlflow==1.2.0=py_1 -> pyyaml -> yaml[version='>=0.1.7,<0.2.0a0|>=0.2.5,<0.3.0a0|>=0.2.2,<0.3.0a0']

    Package lz4-c conflicts for: libtiff==4.1.0=h2733197_1 -> zstd[version='>=1.4'] -> lz4-c[version='>=1.8.3,<1.8.4.0a0|>=1.9.2,<1.10.0a0|>=1.9.3,<1.9.4.0a0|>=1.9.2,<1.9.3.0a0|>=1.9.3,<1.10.0a0'] zstd==1.4.9=ha95c52a_0 -> lz4-c[version='>=1.9.3,<1.9.4.0a0'] lz4-c==1.9.3=h9c3ff4c_0

    Package ipaddress conflicts for: requests==2.25.1=pyhd3deb0d_0 -> urllib3[version='>=1.21.1,<1.27'] -> ipaddress mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> ipaddress[version='>=1.0.18'] urllib3==1.26.4=pyhd8ed1ab_0 -> cryptography[version='>=1.3.4'] -> ipaddress docker-py==4.4.4=py39hf3d152e_0 -> cryptography[version='>=1.9'] -> ipaddress

    Package sqlalchemy conflicts for: mlflow==1.2.0=py_1 -> sqlalchemy mlflow==1.2.0=py_1 -> alembic -> sqlalchemy[version='>=0.7.6|>=0.9.0|>=1.1.0|>=0.9.9|>=1.3.0'] sqlalchemy==1.4.0=py39h3811e60_0 alembic==1.5.7=pyhd8ed1ab_0 -> sqlalchemy[version='>=1.3.0']

    Package appdirs conflicts for: docker-py==4.4.4=py39hf3d152e_0 -> appdirs[version='>=1.4.3'] mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0'] -> appdirs[version='>=1.4.3'] appdirs==1.4.4=pyh9f0ad1d_0

    Package libglib conflicts for: gstreamer==1.14.0=h28cd5cc_2 -> glib[version='>=2.66.1,<3.0a0'] -> libglib[version='2.66.1|2.66.2|2.66.2|2.66.3|2.66.3|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.5|2.66.5|2.66.5|2.66.5|2.66.6|2.66.6|2.66.6|2.66.6|2.66.6|2.66.7|2.66.7|2.68.0|2.68.0|2.68.1',build='h0dae87d_1|hbe7bbb4_0|hbe7bbb4_0|hf9edacf_0|hdb14261_0|h748fe8e_1|h164308a_1|hf9edacf_2|h748fe8e_2|hf9edacf_2|h748fe8e_2|h1f3bc88_3|h3e27bee_1|h3e27bee_0|h3e27bee_2|h3e27bee_1|h1f3bc88_0|hdb14261_2|h164308a_2|h164308a_2|hdb14261_2|h748fe8e_2|hf9edacf_2|h164308a_2|hdb14261_2|hf9edacf_1|hdb14261_1|h748fe8e_0|h164308a_0|h1f3bc88_1|h0dae87d_0'] dbus==1.13.18=hb2f20db_0 -> glib -> libglib[version='2.64.6|2.66.1|2.66.2|2.66.2|2.66.3|2.66.3|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.5|2.66.5|2.66.5|2.66.5|2.66.6|2.66.6|2.66.6|2.66.6|2.66.6|2.66.7|2.66.7|2.68.0|2.68.0|2.68.1',build='h0dae87d_1|hbe7bbb4_0|hbe7bbb4_0|hf9edacf_0|hdb14261_0|h748fe8e_1|h164308a_1|hf9edacf_2|h748fe8e_2|hf9edacf_2|h748fe8e_2|h1f3bc88_3|h3e27bee_1|h3e27bee_0|h3e27bee_2|h3e27bee_1|h1f3bc88_0|hdb14261_2|h164308a_2|h164308a_2|hdb14261_2|h748fe8e_2|hf9edacf_2|h164308a_2|hdb14261_2|hf9edacf_1|hdb14261_1|h748fe8e_0|h164308a_0|h1f3bc88_1|h0dae87d_0|h0dae87d_0'] gst-plugins-base==1.14.0=h8213a91_2 -> glib[version='>=2.66.1,<3.0a0'] -> libglib[version='2.66.1|2.66.2|2.66.2|2.66.3|2.66.3|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.5|2.66.5|2.66.5|2.66.5|2.66.6|2.66.6|2.66.6|2.66.6|2.66.6|2.66.7|2.66.7|2.68.0|2.68.0|2.68.1|>=2.68.1,<3.0a0|>=2.66.7,<3.0a0|>=2.66.4,<3.0a0|>=2.64.6,<3.0a0',build='h0dae87d_1|hbe7bbb4_0|hbe7bbb4_0|hf9edacf_0|hdb14261_0|h748fe8e_1|h164308a_1|hf9edacf_2|h748fe8e_2|hf9edacf_2|h748fe8e_2|h1f3bc88_3|h3e27bee_1|h3e27bee_0|h3e27bee_2|h3e27bee_1|h1f3bc88_0|hdb14261_2|h164308a_2|h164308a_2|hdb14261_2|h748fe8e_2|hf9edacf_2|h164308a_2|hdb14261_2|hf9edacf_1|hdb14261_1|h748fe8e_0|h164308a_0|h1f3bc88_1|h0dae87d_0'] qt==5.9.7=h5867ecd_1 -> dbus[version='>=1.13.2,<2.0a0'] -> libglib[version='2.64.6|2.66.1|2.66.2|2.66.2|2.66.3|2.66.3|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.4|2.66.5|2.66.5|2.66.5|2.66.5|2.66.6|2.66.6|2.66.6|2.66.6|2.66.6|2.66.7|2.66.7|2.68.0|2.68.0|2.68.1|>=2.64.6,<3.0a0|>=2.68.0,<3.0a0',build='h0dae87d_1|hbe7bbb4_0|hbe7bbb4_0|hf9edacf_0|hdb14261_0|h748fe8e_1|h164308a_1|hf9edacf_2|h748fe8e_2|hf9edacf_2|h748fe8e_2|h1f3bc88_3|h3e27bee_1|h3e27bee_0|h3e27bee_2|h3e27bee_1|h1f3bc88_0|hdb14261_2|h164308a_2|h164308a_2|hdb14261_2|h748fe8e_2|hf9edacf_2|h164308a_2|hdb14261_2|hf9edacf_1|hdb14261_1|h748fe8e_0|h164308a_0|h1f3bc88_1|h0dae87d_0|h0dae87d_0']

    Package docker-py conflicts for: docker-py==4.4.4=py39hf3d152e_0 mlflow==1.2.0=py_1 -> docker-py[version='>=3.6.0']

    Package brotlipy conflicts for: brotlipy==0.7.0=py39h3811e60_1001 requests==2.25.1=pyhd3deb0d_0 -> urllib3[version='>=1.21.1,<1.27'] -> brotlipy[version='>=0.6.0'] urllib3==1.26.4=pyhd8ed1ab_0 -> brotlipy[version='>=0.6.0']

    Package pyyaml conflicts for: mlflow==1.2.0=py_1 -> pyyaml pyyaml==5.4.1=py39h3811e60_0

    Package libgomp conflicts for: blas==2.108=mkl -> _openmp_mutex[version='>=4.5'] -> libgomp[version='>=7.3.0|>=7.5.0'] libgcc-ng==9.3.0=h2828fa1_18 -> _openmp_mutex[version='>=4.5'] -> libgomp[version='>=7.3.0|>=7.5.0'] mkl==2020.4=h726a3e6_304 -> _openmp_mutex[version='>=4.5'] -> libgomp[version='>=7.3.0|>=7.5.0']

    Package qt conflicts for: pyqt==5.9.2=py39h2531618_6 -> qt[version='5.9.*|>=5.9.7,<5.10.0a0'] matplotlib==3.3.4=py39hf3d152e_0 -> pyqt -> qt[version='4.8.|5.6.|5.9.*|>=5.9.7,<5.10.0a0|>=5.9.6,<5.10.0a0|>=5.9.4,<5.10.0a0|>=5.6.3,<5.7.0a0|>=5.12.9,<5.13.0a0|>=5.12.5,<5.13.0a0|>=5.6.2,<5.7.0a0|>=4.8.6,<5.0'] qt==5.9.7=h5867ecd_1

    Package databricks-cli conflicts for: databricks-cli==0.9.1=py_0 mlflow==1.2.0=py_1 -> databricks-cli[version='>=0.8.7']

    Package itsdangerous conflicts for: itsdangerous==1.1.0=py_0 flask==1.1.2=pyh9f0ad1d_0 -> itsdangerous[version='>=0.24'] mlflow==1.2.0=py_1 -> flask -> itsdangerous[version='>=0.21|>=0.24']

    Package gitpython conflicts for: mlflow==1.2.0=py_1 -> gitpython[version='>=2.1.0'] gitpython==3.1.14=pyhd8ed1ab_0The following specifications were found to be incompatible with your system:

    • feature:/linux-64::__cuda==10.1=0
    • feature:/linux-64::__glibc==2.23=0
    • feature:|@/linux-64::__cuda==10.1=0
    • cudatoolkit==11.1.1=h6406543_8 -> __glibc[version='>=2.17,<3.0.a0']
    • kornia==0.3.0=pyh9f0ad1d_0 -> pytorch -> __glibc[version='>=2.17|>=2.17,<3.0.a0']
    • pytorch==1.8.0=py3.9_cuda11.1_cudnn8.0.5_0 -> cudatoolkit[version='>=11.1,<11.2'] -> __glibc[version='>=2.17,<3.0.a0']
    • torchaudio==0.8.0=py39 -> pytorch==1.8.0 -> __glibc[version='>=2.17|>=2.17,<3.0.a0']
    • torchvision==0.9.0=py39_cu111 -> cudatoolkit[version='>=11.1,<11.2'] -> __glibc[version='>=2.17|>=2.17,<3.0.a0']

    Your installed version is: 2.23

    Note that strict channel priority may have removed packages required for satisfiability.**

    Do you konw how to solve this problem ?

    opened by tym2103 4
  • ValueError: axes don't match array only for ouster lidar

    ValueError: axes don't match array only for ouster lidar

    It's my 2nd time to show this error which occurs only using ouster lidar. kitti dataset where used velodyne lidar and others are working well. however i have ouster lidar and i tried to use darpa SubT dataset but still same issue because of ouster lidar.

    after training custom dataset using Ouster OS1-64E Lidar have got follwoing error when i run run_rosnode.py --checkpoint /home/arkin/DeLORA/checkpoints/small_epoch_75.pth --dataset darpa --lidar_topic="/os_cloud_node/points" --lidar_frame="os_lidar"

    `[ERROR] [1642642253.397553]: bad callback: <bound method OdometryPublisher.subscriber_callback of <ros_utils.odometry_publisher.OdometryPublisher object at 0x7f5404141040>> Traceback (most recent call last): File "/opt/ros/noetic/lib/python3/dist-packages/rospy/topics.py", line 750, in _invoke_callback cb(msg) File "/home/arkin/DeLORA/src/ros_utils/odometry_publisher.py", line 188, in subscriber_callback self.point_cloud_t = torch.from_numpy(self.filter_scans(point_cloud_t_numpy)) File "/home/arkin/DeLORA/src/ros_utils/odometry_publisher.py", line 93, in filter_scans scan = np.transpose(scan, (2, 1, 0)) File "<array_function internals>", line 5, in transpose File "/home/arkin/anaconda3/envs/DeLORA-py3.9/lib/python3.9/site-packages/numpy/core/fromnumeric.py", line 658, in transpose return _wrapfunc(a, 'transpose', axes) File "/home/arkin/anaconda3/envs/DeLORA-py3.9/lib/python3.9/site-packages/numpy/core/fromnumeric.py", line 58, in _wrapfunc return bound(*args, **kwds) ValueError: axes don't match array

    `

    Looking forward to ur feedback. Thanks

    opened by arkinrc 3
  • TypeError: load() missing 1 required positional argument: 'Loader'

    TypeError: load() missing 1 required positional argument: 'Loader'

    Hi. I am trying to learn and train the provided rosbag dataset however after complete environment successfully installation, i am unable to run pre-process.py. Have got the following error plz guide me. thanks

    preprocess_data.py
    Checking whether path to ./datasets/darpa exists.
    ----------------------------------
    Run for the datasets: ['darpa']
    which are located at
    ./datasets/darpa
    and will be stored at
    ./datasets/darpa/preprocessed/sequences
    ----------
    Continue? (y/n): y
    ----------------------------------
    Configuration for this run: 
    {'horizontal_field_of_view': [-3.139847324337799, 3.139847324337799], 'min_num_points_in_neighborhood_to_determine_point_class': 10, 'epsilon_plane': 0.01, 'epsilon_line': 0.01, 'epsilon_range': 0.5, 'kitti': {'training_identifiers': [0, 1, 2, 3, 4, 5, 6, 7, 8], 'testing_identifiers': [9, 10], 'vertical_field_of_view': [-24.5, 2.0], 'vertical_cells': 64, 'horizontal_cells': 720, 'preprocessed_path': './datasets/kitti/preprocessed/sequences', 'pose_data_path': './datasets/kitti/data_odometry_poses/dataset/poses', 'dataset_type': 'kitti', 'horizontal_cells_preprocessing': 2250, 'neighborhood_side_length': [7, 11], 'data_path': './datasets/kitti/data_odometry_velodyne/dataset/sequences', 'rosbag_path': './datasets/kitti/rosbags/'}, 'darpa': {'training_identifiers': [0], 'testing_identifiers': [0], 'vertical_field_of_view': [-0.39269908169872414, 0.39269908169872414], 'vertical_cells': 64, 'horizontal_cells': 512, 'preprocessed_path': './datasets/darpa/preprocessed/sequences', 'pose_data_path': None, 'dataset_type': 'rosbag', 'topic': '/sherman/lidar_points', 'horizontal_cells_preprocessing': 512, 'neighborhood_side_length': [7, 11], 'data_path': './datasets/darpa', 'data_identifiers': [0, 0]}, 'custom': None, 'datasets': ['darpa'], 'mode': 'training', 'experiment': 'trainings_experiments_1', 'device': device(type='cuda'), 'store_dataset_in_RAM': False, 'num_dataloader_workers': 0, 'unsupervised_at_start': False, 'inference_only': True, 'log_normals': True, 'visualize_images': True, 'visualize_single_img_preprocessing': False, 'use_jit': False}
    ----------------------------------
    Loading rosbag ./datasets/darpa/00.bag...
    ...done.
    Traceback (most recent call last):
      File "/home/arkin/anaconda3/envs/DeLORA-py3.9/bin/preprocess_data.py", line 7, in <module>
        exec(compile(f.read(), __file__, 'exec'))
      File "/home/arkin/DeLORA/bin/preprocess_data.py", line 80, in <module>
        preprocesser.preprocess_data()
      File "/home/arkin/DeLORA/src/preprocessing/preprocesser.py", line 96, in preprocess_data
        rosbag_preprocessor = data.rosbag_scans.RosbagDatasetPreprocessor(config=self.config,
      File "/home/arkin/DeLORA/src/data/rosbag_scans.py", line 36, in __init__
        self.rosbag_extractor = ros_utils.rosbag_pcl_extractor.RosbagToPCLExtractor(
      File "/home/arkin/DeLORA/src/ros_utils/rosbag_pcl_extractor.py", line 25, in __init__
        info_dict = yaml.load(self.bag._get_yaml_info())
    TypeError: load() missing 1 required positional argument: 'Loader'
    

    I am using ubuntu 20.04 with ros-noetic ...

    Looking forward to your feedback.

    Regards Arkin

    opened by arkinrc 2
  • Failed to load Python extension for LZ4 support

    Failed to load Python extension for LZ4 support

    First of all thank you very much for your work. When we run 'preprocesser.py', we meet the issues: Failed to load Python extension for LZ4 support. LZ4 compression will not be available. could you help me how to solve this problem??

    opened by sunhufly 2
  • can not find ./config/config_datasets_preprocessing.yaml

    can not find ./config/config_datasets_preprocessing.yaml

    Dear author, I can not find "config_datasets_preprocessing.yaml" in ./config to test my own data, could you please answer this small question? Thank you very much.

    opened by shenhai911 2
  • About Odom data

    About Odom data

    Thank you very much for your code. When I ran it in ros, I found an error in the odom. The result obtained is the result of each registration, and the odom data calculation is not completed.

    bug 
    opened by ZYCheng-coder 2
  • About yaml error

    About yaml error

    Hi, Thanks for your code. When I run run_training.py I get a error.

    File "E:/project_1/delora-main/bin/run_training.py", line 97, in trainer.train() File "E:\project_1\delora-main\src\deploy\trainer.py", line 180, in train mlflow.pytorch.log_model(self.model, "latest_model_pickled") File "D:\Anaconda3\envs\torch\lib\site-packages\mlflow\pytorch_init_.py", line 150, in log_model conda_env=conda_env, code_paths=code_paths, pickle_module=pickle_module, **kwargs) File "D:\Anaconda3\envs\torch\lib\site-packages\mlflow\models_init_.py", line 77, in log flavor.save_model(path=local_path, mlflow_model=mlflow_model, **kwargs) File "D:\Anaconda3\envs\torch\lib\site-packages\mlflow\pytorch_init_.py", line 259, in save_model mlflow_model.save(os.path.join(path, "MLmodel")) File "D:\Anaconda3\envs\torch\lib\site-packages\mlflow\models_init_.py", line 51, in save self.to_yaml(out) File "D:\Anaconda3\envs\torch\lib\site-packages\mlflow\models_init_.py", line 46, in to_yaml return yaml.safe_dump(self.dict, stream=stream, default_flow_style=False) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml_init_.py", line 306, in safe_dump return dump_all([data], stream, Dumper=SafeDumper, **kwds) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml_init_.py", line 278, in dump_all dumper.represent(data) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 27, in represent node = self.represent_data(data) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 48, in represent_data node = self.yaml_representers[data_types[0]](self, data) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 207, in represent_dict return self.represent_mapping('tag:yaml.org,2002:map', data) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 118, in represent_mapping node_value = self.represent_data(item_value) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 48, in represent_data node = self.yaml_representers[data_types[0]](self, data) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 207, in represent_dict return self.represent_mapping('tag:yaml.org,2002:map', data) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 118, in represent_mapping node_value = self.represent_data(item_value) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 48, in represent_data node = self.yaml_representers[data_types[0]](self, data) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 207, in represent_dict return self.represent_mapping('tag:yaml.org,2002:map', data) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 118, in represent_mapping node_value = self.represent_data(item_value) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 58, in represent_data node = self.yaml_representers[None](self, data) File "D:\Anaconda3\envs\torch\lib\site-packages\yaml\representer.py", line 231, in represent_undefined raise RepresenterError("cannot represent an object", data) yaml.representer.RepresenterError: ('cannot represent an object', '1.10.0')

    Process finished with exit code 1

    Can you give me some advice? Thanks.

    Best.

    opened by cainiaoshidai 1
  • multiple gpus error

    multiple gpus error

    Hello, I am trying to use multiple gpus as per given in deployment configuration file. I do have two gpus of Titan RTX 24 GB each but i am unable to use both together however, single gpu can use easily. i've tried different ways but couldn't succeed. error is given below. Might possible gpu selection way is wrong. Could you please guide how to select in proper way. Thanks

    ` config["device"] = torch.device(config["device"]) RuntimeError: Invalid device string: 'CUDA_VISIBLE_DEVICES=0,1'

    ` Best Regards Arkin

    opened by arkinrc 1
  • About Scan2Map

    About Scan2Map

    The experimental results in your paper show that the performance of self-supervised LO+map has improved significantly. Now I have a question to combine the trained odometry with mapping. How did you embed this project in LOAM?

    opened by yuqJin 1
  • Question about the set of epoch

    Question about the set of epoch

    Dear officer,

    Thanks for sharing a great job.I am running the code with the experiments DARPA SubT Challenge Urban Circuit in the paper Self-supervised Learning of LiDAR Odometry for Robotic Applications

    Now I start to retrain the model based on your code. I found that the EPOCH you set is 10000. Train one epoch on my 3090 server needs 1.5 hours. It seems that it needs plenty of time if following the set of 10000 epoch. My question is whether the training process needs to be stop when loss decreased not much?

    wish you the best

    opened by ZhengDonglei 3
  • reproduce the results of DARPA

    reproduce the results of DARPA

    Dear officer,

    Thanks for sharing a great job.I am running the code with the experiments DARPA SubT Challenge Urban Circuit in the paper Self-supervised Learning of LiDAR Odometry for Robotic Applications

    First I trained a network base on the Alpha course for around 80 epochs with a loss of 0.077586 image

    Then I use the Beta to infer the results darpa_beta_map_darpa_00_2d darpa_beta_map_darpa_00_3d

    seems not very close to the paper

    image

    I also try to use a LOAM-like method, it can output a map so I think the data I am using is correct. result_legoloam

    My question is,

    1. Does the trained model is not good? Can you share your model on DARPA for testing?
    2. Do I need to add the mapping module of LOAM before evaluating the results of DARPA?
    opened by DarrenWong 5
Owner
Robotic Systems Lab - Legged Robotics at ETH Zürich
The Robotic Systems Lab investigates the development of machines and their intelligence to operate in rough and challenging environments.
Robotic Systems Lab - Legged Robotics at ETH Zürich
LVI-SAM: Tightly-coupled Lidar-Visual-Inertial Odometry via Smoothing and Mapping

LVI-SAM This repository contains code for a lidar-visual-inertial odometry and mapping system, which combines the advantages of LIO-SAM and Vins-Mono

Tixiao Shan 1.1k Dec 27, 2022
T-LOAM: Truncated Least Squares Lidar-only Odometry and Mapping in Real-Time

T-LOAM: Truncated Least Squares Lidar-only Odometry and Mapping in Real-Time The first Lidar-only odometry framework with high performance based on tr

Pengwei Zhou 183 Dec 1, 2022
Advancing Self-supervised Monocular Depth Learning with Sparse LiDAR

Official implementation for paper "Advancing Self-supervised Monocular Depth Learning with Sparse LiDAR"

Ziyue Feng 72 Dec 9, 2022
The Self-Supervised Learner can be used to train a classifier with fewer labeled examples needed using self-supervised learning.

Published by SpaceML • About SpaceML • Quick Colab Example Self-Supervised Learner The Self-Supervised Learner can be used to train a classifier with

SpaceML 92 Nov 30, 2022
Train robotic agents to learn pick and place with deep learning for vision-based manipulation in PyBullet.

Ravens is a collection of simulated tasks in PyBullet for learning vision-based robotic manipulation, with emphasis on pick and place. It features a Gym-like API with 10 tabletop rearrangement tasks, each with (i) a scripted oracle that provides expert demonstrations (for imitation learning), and (ii) reward functions that provide partial credit (for reinforcement learning).

Google Research 367 Jan 9, 2023
A complete end-to-end demonstration in which we collect training data in Unity and use that data to train a deep neural network to predict the pose of a cube. This model is then deployed in a simulated robotic pick-and-place task.

Object Pose Estimation Demo This tutorial will go through the steps necessary to perform pose estimation with a UR3 robotic arm in Unity. You’ll gain

Unity Technologies 187 Dec 24, 2022
VID-Fusion: Robust Visual-Inertial-Dynamics Odometry for Accurate External Force Estimation

VID-Fusion VID-Fusion: Robust Visual-Inertial-Dynamics Odometry for Accurate External Force Estimation Authors: Ziming Ding , Tiankai Yang, Kunyi Zhan

ZJU FAST Lab 86 Nov 18, 2022
The Surprising Effectiveness of Visual Odometry Techniques for Embodied PointGoal Navigation

PointNav-VO The Surprising Effectiveness of Visual Odometry Techniques for Embodied PointGoal Navigation Project Page | Paper Table of Contents Setup

Xiaoming Zhao 41 Dec 15, 2022
Semi-supervised Implicit Scene Completion from Sparse LiDAR

Semi-supervised Implicit Scene Completion from Sparse LiDAR Paper Created by Pengfei Li, Yongliang Shi, Tianyu Liu, Hao Zhao, Guyue Zhou and YA-QIN ZH

null 114 Nov 30, 2022
Scribble-Supervised LiDAR Semantic Segmentation, CVPR 2022 (ORAL)

Scribble-Supervised LiDAR Semantic Segmentation Dataset and code release for the paper Scribble-Supervised LiDAR Semantic Segmentation, CVPR 2022 (ORA

null 102 Dec 25, 2022
deep-table implements various state-of-the-art deep learning and self-supervised learning algorithms for tabular data using PyTorch.

deep-table implements various state-of-the-art deep learning and self-supervised learning algorithms for tabular data using PyTorch.

null 63 Oct 17, 2022
[CVPR 2021] "The Lottery Tickets Hypothesis for Supervised and Self-supervised Pre-training in Computer Vision Models" Tianlong Chen, Jonathan Frankle, Shiyu Chang, Sijia Liu, Yang Zhang, Michael Carbin, Zhangyang Wang

The Lottery Tickets Hypothesis for Supervised and Self-supervised Pre-training in Computer Vision Models Codes for this paper The Lottery Tickets Hypo

VITA 59 Dec 28, 2022
Patch Rotation: A Self-Supervised Auxiliary Task for Robustness and Accuracy of Supervised Models

Patch-Rotation(PatchRot) Patch Rotation: A Self-Supervised Auxiliary Task for Robustness and Accuracy of Supervised Models Submitted to Neurips2021 To

null 4 Jul 12, 2021
Unified Pre-training for Self-Supervised Learning and Supervised Learning for ASR

UniSpeech The family of UniSpeech: UniSpeech (ICML 2021): Unified Pre-training for Self-Supervised Learning and Supervised Learning for ASR UniSpeech-

Microsoft 282 Jan 9, 2023
ManipulaTHOR, a framework that facilitates visual manipulation of objects using a robotic arm

ManipulaTHOR: A Framework for Visual Object Manipulation Kiana Ehsani, Winson Han, Alvaro Herrasti, Eli VanderBilt, Luca Weihs, Eric Kolve, Aniruddha

AI2 65 Dec 30, 2022
CLIPort: What and Where Pathways for Robotic Manipulation

CLIPort CLIPort: What and Where Pathways for Robotic Manipulation Mohit Shridhar, Lucas Manuelli, Dieter Fox CoRL 2021 CLIPort is an end-to-end imitat

null 246 Dec 11, 2022
RGB-stacking 🛑 🟩 🔷 for robotic manipulation

RGB-stacking ?? ?? ?? for robotic manipulation BLOG | PAPER | VIDEO Beyond Pick-and-Place: Tackling Robotic Stacking of Diverse Shapes, Alex X. Lee*,

DeepMind 95 Dec 23, 2022
Doosan robotic arm, simulation, control, visualization in Gazebo and ROS2 for Reinforcement Learning.

Robotic Arm Simulation in ROS2 and Gazebo General Overview This repository includes: First, how to simulate a 6DoF Robotic Arm from scratch using GAZE

David Valencia 12 Jan 2, 2023
DiSECt: Differentiable Simulator for Robotic Cutting

DiSECt: Differentiable Simulator for Robotic Cutting Website | Paper | Dataset | Video | Blog post DiSECt is a simulator for the cutting of deformable

NVIDIA Research Projects 73 Oct 29, 2022