I need the version 5.12 of the qt
package in anaconda, but version 5.9.7 is installed.
>>> conda list qt -f
# packages in environment at /PATH/anaconda3/env/my_env
#
# Name Version Build Channel
qt 5.9.7 h5867ecd_1
Since the latest version of qt
in the default channel anaconda
is 5.9.7(https://anaconda.org/anaconda/qt), I want to install qt
package from the channel conda-forge
, which has the version 5.12.5(https://anaconda.org/conda-forge/qt).
So I tried to install qt
from conda-forge
channel with this command.
>>> conda install qt -c conda-forge --override-channels
But conda didn't install qt
from the new channel and printed that all packages are already installed.
Collecting package metadata (current_repodata.json): done
Solving environment: done
# All requested packages already installed.
FYI, my channel configuration in .condarc is
channels:
- defaults
- conda-forge
channel_priority: disabled
Why does not conda update qt
and how to install qt
from the channel conda-forge
?
conda install conda-forge::qt
- you can also force installing a specific version byconda install "qt>=5.12"
– Heritable