facebookresearch / DetectAndTrack

The implementation of an algorithm presented in the CVPR18 paper: "Detect-and-Track: Efficient Pose Estimation in Videos"
Apache License 2.0
1k stars 186 forks source link

PackagesNotFoundError: The following packages are not available from current channels: - libiconv==1.15=0 #48

Closed Duankaiwen closed 6 years ago

Duankaiwen commented 6 years ago

conda create -c conda-forge --name $ENV_NAME --file all_pkg_versions.txt python=2.7 anaconda Solving environment: failed

PackagesNotFoundError: The following packages are not available from current channels:

Current channels:

rohitgirdhar commented 6 years ago

Please try a newer version of the package. The provided list is only a reference, the code should ideally be compatible with the newer versions as well.

Duankaiwen commented 6 years ago

Please try a newer version of the package. The provided list is only a reference, the code should ideally be compatible with the newer versions as well. Many thanks!

my-hello-world commented 5 years ago

hello i try conda install libiconv in the env. Got libiconv==1.14。 but i got new problems after changed it. `Solving environment: failed

UnsatisfiableError: The following specifications were found to be in conflict:

UnsatisfiableError: The following specifications were found to be in conflict:

Duankaiwen commented 5 years ago

hello i try conda install libiconv in the env. Got libiconv==1.14。 but i got new problems after changed it. `Solving environment: failed

UnsatisfiableError: The following specifications were found to be in conflict:

  • blas==1.1=openblas
  • numexpr==2.6.4=py27hd318778_0 -> blas=[build=mkl] Use "conda info " to see the dependencies for each package.`

As suggested, by the error prompt, I can view more details with conda info,doing this: conda info numexpr==2.6.4 I compared them with all_pkg_versions.txt carefully,but still can't see a conflict. try again: conda create -c conda-forge --name $ENV_NAME --file all_pkg_versions.txt python=2.7 anaconda i got: `Solving environment: failed

UnsatisfiableError: The following specifications were found to be in conflict:

  • numexpr==2.6.4=py27hd318778_0
  • opencv==3.4.1=py27_blas_openblas_200 Use "conda info " to see the dependencies for each package. ` ahahahhh How can I deal with this? thanks!

Try to comment the package ‘numexpr’, then run the code, if the code can still work fine, the problem can be ignored. I've encountered similar problems, and comment some problematic packages, I found the code still works fine. If this doesn't work, you'd better use libiconv=1.15=0. Good luck!