ikeid
@ikeid

Are you sure you want to delete the question?

If your question is resolved, you may close it.

Leaving a resolved question undeleted may help others!

We hope you find it useful!

Pycaretがインストールできない

解決したいこと

powershellでpycaretをインストールしたいのですがエラーが出てしまいます。どうしたらいいのでしょうか?

発生している問題・エラー

 note: This error originates from a subprocess, and is likely not a problem with pip.
      error: legacy-install-failure

      Encountered error while trying to install package.

      numpy

      note: This is an issue with the package mentioned above, not pip.
      hint: See above for output from the failure.
      WARNING: Ignoring invalid distribution -illow (c:\users\tenyo\appdata\local\programs\python\python310\lib\site-packages)
      WARNING: Ignoring invalid distribution -illow (c:\users\tenyo\appdata\local\programs\python\python310\lib\site-packages)
      [end of output]

  note: This error originates from a subprocess, and is likely not a problem with pip.
error: subprocess-exited-with-error

× pip subprocess to install build dependencies did not run successfully.
│ exit code: 1
╰─> See above for output.

note: This error originates from a subprocess, and is likely not a problem with pip.

該当するソースコード

pip install pycaret
もしくは
pip install pycaret --user

環境

windows11
Python 3.10.4
pip 22.0.4

0

2Answer

PycaretはPython 3.6-3.8に対してサポートされています。3.10はサポートされていません。
Pycaret Official - Installation
仮想環境は何を使っていますか?
miniconda + conda-forgeチャネルを使うと、conda install pycaretで環境構築ができます。

0Like

Comments

  1. @ikeid

    Questioner

    初心者には難しそうなので仮想環境はまだ作っていませんでした。そこまでがっつり使いたいわけでもないのでとりあえずgoogle colabでしのぐことにします。
    ありがとうございました。

まだ完璧ではないですが、これでインストールできました。

pip install -U --pre pycaret

0Like

Your answer might help someone💌