You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stopped in Downgrading swebench, I fix it by run poetry self update (See #2528)
The log
Package operations: 0 installs, 1 update, 0 removals
- Downgrading swebench (2.0.12 c2b3cef -> 2.0.2 4498af9)
Installing the current project: opendevin (0.8.2)
Running playwright install --with-deps chromium...
Installing dependencies...
Switching to root user to install dependencies...
[sudo] password for xxx:
xxx is not in the sudoers file. This incident will be reported.
Failed to install browsers
The authority problem has been discussed in #11165
Then I su to root user to run playwright install --with-deps chromium, errors come
$ playwright install --with-deps chromium
BEWARE: your OS is not officially supported by Playwright; installing dependencies for ubuntu18.04-x64 as a fallback.
Cannot install dependencies for ubuntu18.04-x64!
Failed to install browsers
Error: ERROR: Playwright does not support chromium on ubuntu18.04-x64
Search for web, the ubuntu 18 has been discarded after 1.29, but in the poetry.lock file , which requires playwright = ">=1.32,<1.40", which means run this project on Ubuntu 18 with the same dependencies is impossible.
The text was updated successfully, but these errors were encountered:
Thanks for the report @XitaoLi! But given that Ubuntu 18 is now 6 years old, I think we're probably not going to be able to commit resources to supporting it. I would suggest running OpenDevin in a newer environment.
I set up the project in development mode within a conda environment.
conda start
git clone --branch 0.8.3 [email protected]:OpenDevin/OpenDevin.git --depth 1
conda create -n opendevin python==3.11
conda activate opendevin
conda install nodejs=20.1.0 -c conda-forge
conda install poetry=1.8.3 -c conda-forge
make build
I meet the same issue with python-poetry/poetry#8623 and finally work in
export PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring
The log of
make build
Stopped in Downgrading swebench, I fix it by run
poetry self update
(See #2528)The log
The authority problem has been discussed in #11165
Then I su to root user to run
playwright install --with-deps chromium
, errors comeSearch for web, the ubuntu 18 has been discarded after 1.29, but in the
poetry.lock
file , which requiresplaywright = ">=1.32,<1.40"
, which means run this project on Ubuntu 18 with the same dependencies is impossible.The text was updated successfully, but these errors were encountered: