Unable to install Kivy in Virtual Environment Anaconda

Hi everybody.
First of all I love Anaconda.
I have some issues with Virtual Environments.
I will give all information so i hope somebody can help me!

Operation System: Windows 11
Conda BASE Python Version: 3.10.13
I had installed Anaconda in the past so i did NOT use below commands to update it.

conda update conda
conda update anaconda

I used conda install anaconda=2023.09 to update it.

Conda List Anaconda:
Screenshot 2023-10-12 164154

PROMLEM:
First of all i install Jupyter (conda install -c anaconda jupyter) with out a problem!
But after that, if i try to install Kivy (conda install -c conda-forge kivy) I get some errors!

(tutorialEnv) C:\Users\SEO>conda install -c conda-forge kivy
Collecting package metadata (current_repodata.json): done
Solving environment: unsuccessful initial attempt using frozen solve. Retrying with flexible solve.
Solving environment: unsuccessful attempt using repodata from current_repodata.json, retrying with next repodata source.
Collecting package metadata (repodata.json): done
Solving environment: /
Warning: 2 possible package resolutions (only showing differing packages):
  - anaconda/win-64::openssl-3.0.11-h2bbff1b_2
  - defaults/win-64::openssl-3.0.11-h2bbff1bdone

## Package Plan ##

  environment location: C:\Users\SEO\anaconda3\envs\tutorialEnv

  added / updated specs:
    - kivy


The following packages will be downloaded:

    package                    |            build
    ---------------------------|-----------------
    docutils-0.20.1            |  py310h5588dad_2         755 KB  conda-forge
    freetype-2.10.4            |       h546665d_1         489 KB  conda-forge
    kivy-2.1.0                 |  py310h6a7f093_1        20.0 MB  conda-forge
    libflac-1.3.4              |       h0e60522_0         355 KB  conda-forge
    libmad-0.15.1b             |    hfa6e2cd_1000         189 KB  conda-forge
    sdl2-2.0.22                |       h0e60522_2         2.6 MB  conda-forge
    sdl2_image-2.0.4           |       h38009a3_0         290 KB  conda-forge
    sdl2_mixer-2.6.2           |       h0e60522_0         182 KB  conda-forge
    sdl2_ttf-2.0.15            |       h4636d2b_0          26 KB  conda-forge
    smpeg2-2.0.0               |       h6538335_1         131 KB  conda-forge
    ------------------------------------------------------------
                                           Total:        25.0 MB

The following NEW packages will be INSTALLED:

  docutils           conda-forge/win-64::docutils-0.20.1-py310h5588dad_2
  freetype           conda-forge/win-64::freetype-2.10.4-h546665d_1
  glew               conda-forge/win-64::glew-2.1.0-h39d44d4_2
  kivy               conda-forge/win-64::kivy-2.1.0-py310h6a7f093_1
  libflac            conda-forge/win-64::libflac-1.3.4-h0e60522_0
  libmad             conda-forge/win-64::libmad-0.15.1b-hfa6e2cd_1000
  libogg             conda-forge/win-64::libogg-1.3.4-h8ffe710_1
  libvorbis          conda-forge/win-64::libvorbis-1.3.7-h0e60522_0
  pillow             pkgs/main/win-64::pillow-9.4.0-py310hd77b12b_1
  python_abi         conda-forge/win-64::python_abi-3.10-2_cp310
  sdl2               conda-forge/win-64::sdl2-2.0.22-h0e60522_2
  sdl2_image         conda-forge/win-64::sdl2_image-2.0.4-h38009a3_0
  sdl2_mixer         conda-forge/win-64::sdl2_mixer-2.6.2-h0e60522_0
  sdl2_ttf           conda-forge/win-64::sdl2_ttf-2.0.15-h4636d2b_0
  smpeg2             conda-forge/win-64::smpeg2-2.0.0-h6538335_1

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

  ca-certificates    anaconda::ca-certificates-2023.08.22-~ --> conda-forge::ca-certificates-2023.7.22-h56e8100_0
  certifi            anaconda/win-64::certifi-2023.7.22-py~ --> conda-forge/noarch::certifi-2023.7.22-pyhd8ed1ab_0

How can i fix this problem? Each time when i want to install different libraries to one ENV, it always stuck in loading and give some this kind errors.

Warning: 2 possible package resolutions (only showing differing packages):
  - anaconda/win-64::openssl-3.0.11-h2bbff1b_2
  - defaults/win-64::openssl-3.0.11-h2bbff1bdone

Too Strange That
If i create two different Environments so i can install Jupyter to one of them and i can install Kivy to other one without a problem!

I tried to create 3.9 Python Env but nothing changed! Same errors!

Thanks very much.