前提・実現したいこと
scikit-learnの開発バージョン(scikit-learn 0.24.dev0)をpipenv環境にインストールしたいのですが、
安定版(scikit-learn 0.23.2)がインストールされてしまいます。
情報お持ちの方がいましたら、ご教示お願いします。
試したこと
pipでのscikit-learnの開発バージョン(scikit-learn 0.24.dev0)インストール手順は公式サイトに記載されており、
問題なくインストールできました。
bash
1$ pip install --pre --extra-index https://pypi.anaconda.org/scipy-wheels-nightly/simple scikit-learn
しかし、pipenvで同じようにインストールしようとすると、
scikit-learn 0.23.2(安定版)がインストールされてしまいます。
bash
1$ pipenv install --dev --pre --extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple scikit-learn
外部URL追加はpipenv公式サイトを参考に行いました。
実行結果
pipenvでインストールしたときの結果。
bash
1-> % pipenv install --dev --pre --extra-index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple scikit-learn 2Installing scikit-learn… 3Adding scikit-learn to Pipfile's [dev-packages]… 4✔ Installation Succeeded 5Pipfile.lock (571d6c) out of date, updating to (c28e45)… 6Locking [dev-packages] dependencies… 7Building requirements... 8Resolving dependencies... 9✔ Success! 10Locking [packages] dependencies… 11Building requirements... 12Resolving dependencies... 13✔ Success! 14Updated Pipfile.lock (c28e45)! 15Installing dependencies from Pipfile.lock (c28e45)… 16 ???? ▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ 2/2 — 00:00:00
bash
1-> % python 2Python 3.8.2 (default, Jul 16 2020, 14:00:26) 3[GCC 9.3.0] on linux 4Type "help", "copyright", "credits" or "license" for more information. 5>>> import sklearn 6>>> print(sklearn.__version__) 70.23.2
↑0.23.2版(安定版)がインストールされてしまっている。
環境
-> % cat /etc/os-release NAME="Ubuntu" VERSION="20.04.1 LTS (Focal Fossa)"
-> % python -V Python 3.8.2
-> % pipenv --version pipenv, version 2020.8.13
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/06 22:26
2021/01/09 14:14
2021/01/17 07:11 編集