LoginSignup
3
2

More than 3 years have passed since last update.

anacondaでyamlファイルから仮想環境が作れない場合の対処法

Last updated at Posted at 2020-12-14

環境

  • macOS Catalina
  • MacBook Pro (13-inch, 2018)

エラー内容

$ conda env export > env.yml
$ conda env create --file env.yaml

Collecting package metadata (repodata.json): done
Solving environment: failed

ResolvePackageNotFound: 
  - ipykernel==5.3.4=py37h888b3d9_1
  ...
  ...

解決策

$ conda env export --no-builds > env.yml
$ conda env create --file env.yaml

参考

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2