0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

pythonの実行時エラーを解決した際の備忘録(ERROR: Could not find a version that satisfies the requirement browser-use (from versions: none))

Posted at

pythonでこちらのサンプルコードを実行する際に以下のようなエラーが発生

...
Python >=3.11; 0.1.6 Requires-Python >=3.11; 0.1.7 Requires-Python >=3.11; 0.1.8 Requires-Python >=3.11
ERROR: Could not find a version that satisfies the requirement browser-use (from versions: none)
ERROR: No matching distribution found for browser-use

Requires-Python >=3.11をみるとpython3.11以上が対応、python3.10以下は非対応のように見えたので、pythonのバージョンを3.11以上(今回は3.12)にして解決
例えば、venvを使って仮想環境をつくると他環境と競合せず便利である。
ubuntu20.04環境でvenvを使ってpythonの環境構築した際のメモ

pythonバージョン確認

python --version
# Python 3.12.5
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?