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