前提・実現したいこと
anacondaにてlightgbmをインストールするためにpip install lightgbmを行ってもインストールされない
発生している問題・エラーメッセージ
anacondaにてlightgbmをインストールするためにpip install lightgbmを行ってもインストールされない
エラーメッセージ
Collecting lightgbm
Using cached lightgbm-3.0.0.tar.gz (711 kB)
Requirement already satisfied: numpy in c:\users\daich\anaconda3\lib\site-packages (from lightgbm) (1.19.1)
Requirement already satisfied: scipy in c:\users\daich\anaconda3\lib\site-packages (from lightgbm) (1.5.2)
Requirement already satisfied: scikit-learn!=0.22.0 in c:\users\daich\anaconda3\lib\site-packages (from lightgbm) (0.23.1)
Requirement already satisfied: threadpoolctl>=2.0.0 in c:\users\daich\anaconda3\lib\site-packages (from scikit-learn!=0.22.0->lightgbm) (2.1.0)
Requirement already satisfied: joblib>=0.11 in c:\users\daich\anaconda3\lib\site-packages (from scikit-learn!=0.22.0->lightgbm) (0.16.0)
Building wheels for collected packages: lightgbm
Building wheel for lightgbm (setup.py): started
Building wheel for lightgbm (setup.py): finished with status 'error'
Running setup.py clean for lightgbm
Failed to build lightgbm
Installing collected packages: lightgbm
Running setup.py install for lightgbm: started
Running setup.py install for lightgbm: finished with status 'error'
Note: you may need to restart the kernel to use updated packages.
該当のソースコード
python
pip install lightgbm
試したこと
jupyter notebookでkernelからrestartをしてもダメでした
import lightgbm as lgb
を実行してもNo module named 'lightgbm'と出てしまいます。
一応anaconda本体とインストール済みのパッケージのアップデートはしました。
どなたか詳しい方や似た症状に出会った方がおられましたら教えていただけると助かります。
追記
conda install -c conda-forge lightgbmをAnaconda Promptにて実行しましたがエラーが出てインストールできませんでした。エラーを見ると現在は利用できないという風に読み取れるのですがよくわかりません…
実行結果:
(base) C:\Users\daich>conda install -c conda-forge lightgbm
Collecting package metadata (current_repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
Collecting package metadata (repodata.json): done
Solving environment: failed with initial frozen solve. Retrying with flexible solve.
PackagesNotFoundError: The following packages are not available from current channels:
- lightgbm
Current channels:
- https://conda.anaconda.org/conda-forge/win-32
- https://conda.anaconda.org/conda-forge/noarch
- https://repo.anaconda.com/pkgs/main/win-32
- https://repo.anaconda.com/pkgs/main/noarch
- https://repo.anaconda.com/pkgs/r/win-32
- https://repo.anaconda.com/pkgs/r/noarch
- https://repo.anaconda.com/pkgs/msys2/win-32
- https://repo.anaconda.com/pkgs/msys2/noarch
To search for alternate channels that may provide the conda package you're
looking for, navigate to
https://anaconda.org
and use the search bar at the top of the page.
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/18 12:36
2020/09/18 19:24