Giter Club home page Giter Club logo

Comments (14)

ATheorell avatar ATheorell commented on May 24, 2024 2

Thanks for knowledgeable answer here @Drugjudy !
Would be great to have feedback whether this solves the issue, @BigGod12 and @Scott-hypegate

from gpt-engineer.

ErikBjare avatar ErikBjare commented on May 24, 2024 1

This is definitely an issue with a too old Poetry version. Groups were added in v1.2.

from gpt-engineer.

ATheorell avatar ATheorell commented on May 24, 2024

Hi BigGod,

Can you share more info such as:
OS
python version
poetry version

from gpt-engineer.

BigGod12 avatar BigGod12 commented on May 24, 2024

Hi,ATheorell,
thank you for the response,
OS = Ubuntu 22.04.3 LTS
python = Python 3.10.12
poetry = Poetry version 1.1.12

from gpt-engineer.

ATheorell avatar ATheorell commented on May 24, 2024

@captivus Could you have a look at this?

from gpt-engineer.

captivus avatar captivus commented on May 24, 2024

Minor update to Poetry lock file just made, though I don't anticipate that this is related to that. Please provide more information @BigGod12:

  • How did you install gpte? (pip, cloned repo and installed using poetry?)
  • Are you trying to install gpte, or trying to install a project that gpte has created for you?
  • If the former, please paste the contents of your local version of the gpte pyproject.toml file.

from gpt-engineer.

Scott-hypegate avatar Scott-hypegate commented on May 24, 2024

Minor update to Poetry lock file just made, though I don't anticipate that this is related to that. Please provide more information @BigGod12:

* How did you install gpte? (pip, cloned repo and installed using poetry?)

* Are you trying to install gpte, or trying to install a project that gpte has created for you?

* If the former, please paste the contents of your local version of the gpte `pyproject.toml` file.

Hi, I am having the same issue, with the same OS and python and poetry version setup as this user. I am trying to install gpte, I cloned the repo and install poetry with "sudo apt install python3-poetry."

pyproject.toml here:

[tool.poetry]

name = "gpt-engineer"

version = "0.2.6"

description = "Specify what you want it to build, the AI asks for clarification, and then builds it."

authors = ["Anton Osika <[email protected]>"]

license = "MIT"

readme = "README.md"

homepage = "https://github.com/AntonOsika/gpt-engineer"

repository = "https://github.com/AntonOsika/gpt-engineer"

documentation = "https://gpt-engineer.readthedocs.io/en/latest/"

classifiers = [

  "Development Status :: 4 - Beta",

  "Topic :: Scientific/Engineering :: Artificial Intelligence",

]



[build-system]

requires = ["poetry-core>=1.0.0"]

build-backend = "poetry.core.masonry.api"



[tool.poetry.dependencies]

python = ">=3.10,<3.12" # updated for llama-index dependency

openai = "0.28"

termcolor = "2.3.0"

typer = ">=0.3.2"

rudder-sdk-python = ">=2.0.2"

dataclasses-json = "0.5.7"

tiktoken = ">=0.0.4"

tabulate = "0.9.0"

python-dotenv = ">=0.21.0"

langchain = ">=0.0.335"

toml = ">=0.10.2"



[tool.poetry.group.dev.dependencies]

pytest = ">=7.3.1"

pytest-cov = "^4.1.0"

black = "23.3.0"

mypy = "1.3.0"

ruff = ">=0.0.272"

pre-commit = "3.3.3"

tox = ">=3.0.0"



# docs

autodoc_pydantic = ">=1.8.0"

myst_parser = ">=0.18.1"

nbsphinx = ">=0.8.9"

sphinx = ">=4.5.0"

sphinx-autobuild = ">=2021.3.14"

sphinx_book_theme = ">=0.3.3"

sphinx_rtd_theme = ">=1.0.0"

sphinx-typlog-theme = ">=0.8.0"

sphinx-panels = ">=0.6.0"

toml = ">=0.10.2"

myst-nb = ">=0.17.1"

linkchecker = ">=10.2.1"

sphinx-copybutton = ">=0.5.1"

markdown-include = ">=0.6.0"

sphinx_copybutton = ">=0.5.2"



[tool.poetry.group.experimental]

optional = true



[tool.poetry.group.experimental.dependencies]

llama-index = ">=0.8"

rank-bm25 = ">=0.2.2"

tree_sitter_languages = ">=1.8.0"



[tool.poetry.scripts]

gpt-engineer = 'gpt_engineer.applications.cli.main:app'

ge = 'gpt_engineer.applications.cli.main:app'

gpte = 'gpt_engineer.applications.cli.main:app'

bench = 'gpt_engineer.benchmark.__main__:main'

gpte_test_application = 'tests.caching_main:app'



[tool.poetry.extras]

test = ["pytest", "pytest-cov"]

doc = ["autodoc_pydantic", "myst_parser", "nbsphinx", "sphinx", "sphinx-autobuild", "sphinx_book_theme", "sphinx_rtd_theme", "sphinx-typlog-theme", "sphinx-panels", "myst-nb", "linkchecker", "sphinx-copybutton", "markdown-include", "sphinx_copybutton"]

experimental = ["llama-index", "rank-bm25", "tree_sitter_languages"]



[tool.ruff]

select = ["F", "E", "W", "I001"]

show-fixes = false

target-version = "py310"

task-tags = ["TODO", "FIXME"]

extend-ignore = ["E501", "E722"]



[tool.black]

target-version = ["py310"]



[tool.ruff.isort]

known-first-party = []

known-third-party = []

section-order = [

    "future",

    "standard-library",

    "third-party",

    "first-party",

    "local-folder",

]

combine-as-imports = true

split-on-trailing-comma = false

lines-between-types = 1

from gpt-engineer.

BigGod12 avatar BigGod12 commented on May 24, 2024

Minor update to Poetry lock file just made, though I don't anticipate that this is related to that. Please provide more information @BigGod12:

* How did you install gpte? (pip, cloned repo and installed using poetry?)

* Are you trying to install gpte, or trying to install a project that gpte has created for you?

* If the former, please paste the contents of your local version of the gpte `pyproject.toml` file.

Hi, I am having the same issue, with the same OS and python and poetry version setup as this user. I am trying to install gpte, I cloned the repo and install poetry with "sudo apt install python3-poetry."

pyproject.toml here:

[tool.poetry]

name = "gpt-engineer"

version = "0.2.6"

description = "Specify what you want it to build, the AI asks for clarification, and then builds it."

authors = ["Anton Osika <[email protected]>"]

license = "MIT"

readme = "README.md"

homepage = "https://github.com/AntonOsika/gpt-engineer"

repository = "https://github.com/AntonOsika/gpt-engineer"

documentation = "https://gpt-engineer.readthedocs.io/en/latest/"

classifiers = [

  "Development Status :: 4 - Beta",

  "Topic :: Scientific/Engineering :: Artificial Intelligence",

]



[build-system]

requires = ["poetry-core>=1.0.0"]

build-backend = "poetry.core.masonry.api"



[tool.poetry.dependencies]

python = ">=3.10,<3.12" # updated for llama-index dependency

openai = "0.28"

termcolor = "2.3.0"

typer = ">=0.3.2"

rudder-sdk-python = ">=2.0.2"

dataclasses-json = "0.5.7"

tiktoken = ">=0.0.4"

tabulate = "0.9.0"

python-dotenv = ">=0.21.0"

langchain = ">=0.0.335"

toml = ">=0.10.2"



[tool.poetry.group.dev.dependencies]

pytest = ">=7.3.1"

pytest-cov = "^4.1.0"

black = "23.3.0"

mypy = "1.3.0"

ruff = ">=0.0.272"

pre-commit = "3.3.3"

tox = ">=3.0.0"



# docs

autodoc_pydantic = ">=1.8.0"

myst_parser = ">=0.18.1"

nbsphinx = ">=0.8.9"

sphinx = ">=4.5.0"

sphinx-autobuild = ">=2021.3.14"

sphinx_book_theme = ">=0.3.3"

sphinx_rtd_theme = ">=1.0.0"

sphinx-typlog-theme = ">=0.8.0"

sphinx-panels = ">=0.6.0"

toml = ">=0.10.2"

myst-nb = ">=0.17.1"

linkchecker = ">=10.2.1"

sphinx-copybutton = ">=0.5.1"

markdown-include = ">=0.6.0"

sphinx_copybutton = ">=0.5.2"



[tool.poetry.group.experimental]

optional = true



[tool.poetry.group.experimental.dependencies]

llama-index = ">=0.8"

rank-bm25 = ">=0.2.2"

tree_sitter_languages = ">=1.8.0"



[tool.poetry.scripts]

gpt-engineer = 'gpt_engineer.applications.cli.main:app'

ge = 'gpt_engineer.applications.cli.main:app'

gpte = 'gpt_engineer.applications.cli.main:app'

bench = 'gpt_engineer.benchmark.__main__:main'

gpte_test_application = 'tests.caching_main:app'



[tool.poetry.extras]

test = ["pytest", "pytest-cov"]

doc = ["autodoc_pydantic", "myst_parser", "nbsphinx", "sphinx", "sphinx-autobuild", "sphinx_book_theme", "sphinx_rtd_theme", "sphinx-typlog-theme", "sphinx-panels", "myst-nb", "linkchecker", "sphinx-copybutton", "markdown-include", "sphinx_copybutton"]

experimental = ["llama-index", "rank-bm25", "tree_sitter_languages"]



[tool.ruff]

select = ["F", "E", "W", "I001"]

show-fixes = false

target-version = "py310"

task-tags = ["TODO", "FIXME"]

extend-ignore = ["E501", "E722"]



[tool.black]

target-version = ["py310"]



[tool.ruff.isort]

known-first-party = []

known-third-party = []

section-order = [

    "future",

    "standard-library",

    "third-party",

    "first-party",

    "local-folder",

]

combine-as-imports = true

split-on-trailing-comma = false

lines-between-types = 1

i cloned the repo also installing poetry with apt install python3-poetry, we both followed same steps and having same issue..
@captivus: @ATheorell:

from gpt-engineer.

Drugjudy avatar Drugjudy commented on May 24, 2024

vboxuser@zen-bassi:~/Downloads/gpt-engineer$ poetry install

RuntimeError

The Poetry configuration is invalid: - Additional properties are not allowed ('group' was unexpected)

at /usr/lib/python3/dist-packages/poetry/core/factory.py:43 in create_poetry 39│ message = "" 40│ for error in check_result["errors"]: 41│ message += " - {}\n".format(error) 42│ → 43│ raise RuntimeError("The Poetry configuration is invalid:\n" + message) 44│ 45│ # Load package 46│ name = local_config["name"] 47│ version = local_config["version"] please what could caused this error??thanks

@Scott-hypegate @BigGod12

dont do apt install python3-poetry its doesnt work/install the poetry in the PATH so if your on

Linux, macOS, Windows (WSL) , do this curl -sSL https://install.python-poetry.org | python3 - and then export PATH="/home/max/.local/bin:$PATH" and it should work just fine.

and for Windows (Powershell) (Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | py - followed by same PATH cmd.

Test it out by poetry --version

from gpt-engineer.

captivus avatar captivus commented on May 24, 2024

@Drugjudy thanks for the detailed response!

@BigGod12 @Scott-hypegate please advise whether this resolves the issues you've reported.

from gpt-engineer.

BigGod12 avatar BigGod12 commented on May 24, 2024

yes it does solve the issue regarding poetry install.
@Drugjudy thanks......
@Drugjudy @captivus @ATheorell
but i got this error which i think its regarding "markdown-include (0.8.1)" module
the error i got
vboxuser@zen-bassi:~/Downloads/gpt-engineer$ poetry install
Creating virtualenv gpt-engineer-30Bjq_gH-py3.10 in /home/vboxuser/.cache/pypoetry/virtualenvs
Installing dependencies from lock file
Warning: poetry.lock is not consistent with pyproject.toml. You may be getting improper dependencies. Run poetry lock [--no-update] to fix it.

Package operations: 156 installs, 1 update, 0 removals

• Installing attrs (23.1.0)
• Installing rpds-py (0.15.2)
• Installing referencing (0.32.0)
• Installing typing-extensions (4.9.0)
• Installing annotated-types (0.6.0)
• Installing certifi (2023.11.17)
• Installing charset-normalizer (3.3.2)
• Installing idna (3.6)
• Installing jsonschema-specifications (2023.11.2)
• Installing packaging (23.2)
• Installing platformdirs (4.1.0)
• Installing pydantic-core (2.14.5)
• Installing six (1.16.0)
• Installing traitlets (5.14.0)
• Installing urllib3 (1.26.18)
• Installing asttokens (2.4.1)
• Installing exceptiongroup (1.2.0)
• Installing executing (2.0.1)
• Installing fastjsonschema (2.19.0)
• Installing frozenlist (1.4.1)
• Installing jsonpointer (2.4)
• Installing jsonschema (4.20.0)
• Installing jupyter-core (5.5.1)
• Installing markupsafe (2.1.3)
• Installing marshmallow (3.20.1)
• Installing mdurl (0.1.2)
• Installing multidict (6.0.4)
• Installing mypy-extensions (1.0.0)
• Installing parso (0.8.3)
• Installing ptyprocess (0.7.0)
• Installing pure-eval (0.2.2)
• Installing pydantic (2.5.2)
• Installing python-dateutil (2.8.2)
• Installing pyzmq (25.1.2)
• Installing requests (2.31.0)
• Installing sniffio (1.3.0)
• Installing tornado (6.4)
• Installing wcwidth (0.2.12)
• Installing aiosignal (1.3.1)
• Installing alabaster (0.7.13)
• Installing anyio (4.2.0)
• Installing async-timeout (4.0.3)
• Installing babel (2.14.0): Downloading... 16%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Downloading... 20%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Downloading... 30%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Downloading... 40%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Downloading... 50%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Downloading... 60%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Downloading... 70%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Downloading... 80%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Downloading... 90%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Downloading... 100%
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0): Installing...
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing babel (2.14.0)
• Installing backcall (0.2.0)
• Installing decorator (5.1.1)
• Installing docutils (0.17.1)
• Installing imagesize (1.4.1)
• Installing jedi (0.19.1)
• Installing jinja2 (3.1.2)
• Installing jsonpatch (1.33)
• Installing jupyter-client (8.6.0)
• Installing langsmith (0.0.72)
• Installing markdown-it-py (2.2.0)
• Installing marshmallow-enum (1.5.1)
• Installing matplotlib-inline (0.1.6)
• Installing nbformat (5.9.2)
• Installing pexpect (4.9.0)
• Installing pickleshare (0.7.5)
• Installing prompt-toolkit (3.0.43)
• Installing pygments (2.17.2)
• Installing pyyaml (6.0.1)
• Installing snowballstemmer (2.2.0)
• Installing soupsieve (2.5)
• Installing sphinxcontrib-applehelp (1.0.4)
• Installing sphinxcontrib-devhelp (1.0.2)
• Installing sphinxcontrib-htmlhelp (2.0.1)
• Installing sphinxcontrib-jsmath (1.0.1)
• Installing sphinxcontrib-qthelp (1.0.3)
• Installing sphinxcontrib-serializinghtml (1.1.5)
• Installing stack-data (0.6.3)
• Installing tenacity (8.2.3)
• Installing typing-inspect (0.9.0)
• Installing webencodings (0.5.1)
• Installing yarl (1.9.4)
• Installing zipp (3.17.0)
• Installing accessible-pygments (0.0.4)
• Installing aiohttp (3.9.1)
• Installing beautifulsoup4 (4.12.2)
• Installing bleach (6.1.0)
• Installing click (8.1.7)
• Installing comm (0.2.0)
• Installing dataclasses-json (0.5.7)
• Installing debugpy (1.8.0)
• Installing defusedxml (0.7.1)
• Installing distlib (0.3.8)
• Installing filelock (3.13.1)
• Installing importlib-metadata (7.0.0)
• Installing iniconfig (2.0.0)
• Installing ipython (8.12.3)
• Installing jupyterlab-pygments (0.3.0)
• Installing langchain-core (0.1.2)
• Installing mdit-py-plugins (0.3.5)
• Installing mistune (3.0.2)
• Installing nbclient (0.7.4)
• Installing nest-asyncio (1.5.8)
• Installing numpy (1.24.4)
• Installing pandocfilters (1.5.0)
• Installing pluggy (1.3.0)
• Installing psutil (5.9.7)
• Installing python-dotenv (0.21.1)
• Downgrading setuptools (69.0.3 -> 69.0.2)
• Installing sphinx (4.5.0)
• Installing sqlalchemy (2.0.23)
• Installing tabulate (0.9.0)
• Installing tinycss2 (1.2.1)
• Installing tomli (2.0.1)
• Installing backoff (2.2.1)
• Installing cachetools (5.3.2)
• Installing cfgv (3.4.0)
• Installing chardet (5.2.0)
• Installing colorama (0.4.6)
• Installing coverage (7.3.4)
• Installing deprecation (2.0.7)
• Installing dnspython (2.4.2)
• Installing identify (2.5.33)
• Installing ipykernel (6.27.1)
• Installing jupyter-cache (0.6.1)
• Installing langchain-community (0.0.5)
• Installing livereload (2.6.3)
• Installing markdown (3.5.1)
• Installing monotonic (1.6)
• Installing myst-parser (0.18.1)
• Installing nbconvert (7.13.0)
• Installing nodeenv (1.8.0)
• Installing pathspec (0.12.1)
• Installing pydantic-settings (2.1.0)
• Installing pydata-sphinx-theme (0.13.3)
• Installing pyproject-api (1.6.1)
• Installing pytest (7.4.3)
• Installing regex (2023.10.3)
• Installing sphinxcontrib-jquery (4.1)
• Installing tqdm (4.66.1)
• Installing virtualenv (20.25.0)
• Installing autodoc-pydantic (2.0.1): Pending...
• Installing black (23.3.0): Pending...
• Installing langchain (0.0.352): Pending...
• Installing linkchecker (10.3.0): Pending...
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
• Installing linkchecker (10.3.0): Downloading... 0%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing black (23.3.0): Pending...
• Installing langchain (0.0.352): Pending...
• Installing linkchecker (10.3.0): Downloading... 0%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing autodoc-pydantic (2.0.1): Downloading... 0%
• Installing black (23.3.0): Pending...
• Installing langchain (0.0.352): Pending...
• Installing linkchecker (10.3.0): Downloading... 0%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing linkchecker (10.3.0): Downloading... 60%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing black (23.3.0): Pending...
• Installing langchain (0.0.352): Pending...
• Installing linkchecker (10.3.0): Downloading... 60%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing autodoc-pydantic (2.0.1): Downloading... 100%
• Installing black (23.3.0): Pending...
• Installing langchain (0.0.352): Pending...
• Installing linkchecker (10.3.0): Downloading... 60%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing black (23.3.0): Pending...
• Installing langchain (0.0.352): Pending...
• Installing linkchecker (10.3.0): Downloading... 60%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing autodoc-pydantic (2.0.1): Installing...
• Installing black (23.3.0): Pending...
• Installing langchain (0.0.352): Pending...
• Installing linkchecker (10.3.0): Downloading... 60%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing linkchecker (10.3.0): Downloading... 60%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing langchain (0.0.352): Downloading... 0%
• Installing linkchecker (10.3.0): Downloading... 60%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing black (23.3.0): Pending...
• Installing langchain (0.0.352): Downloading... 0%
• Installing linkchecker (10.3.0): Downloading... 60%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
• Installing autodoc-pydantic (2.0.1)
• Installing black (23.3.0): Pending...
• Installing langchain (0.0.352): Downloading... 0%
• Installing linkchecker (10.3.0): Downloading... 60%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
• Installing linkchecker (10.3.0): Downloading... 100%
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
• Installing linkchecker (10.3.0): Installing...
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
• Installing linkchecker (10.3.0): Installing...
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
• Installing langchain (0.0.352): Downloading... 20%
• Installing linkchecker (10.3.0): Installing...
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Downloading... 20%
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing black (23.3.0): Downloading... 0%
• Installing langchain (0.0.352): Downloading... 20%
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Downloading... 40%
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Downloading... 50%
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Downloading... 70%
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Downloading... 80%
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Downloading... 90%
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Downloading... 100%
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing black (23.3.0): Downloading... 10%
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
• Installing black (23.3.0): Downloading... 70%
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp
• Installing black (23.3.0): Downloading... 80%
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:
• Installing black (23.3.0): Downloading... 90%
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:
• Installing black (23.3.0): Downloading... 100%
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:

• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:

• Installing black (23.3.0): Installing...
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:

• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:

• Installing black (23.3.0)
• Installing langchain (0.0.352): Installing...
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:

• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:

• Installing langchain (0.0.352)
• Installing linkchecker (10.3.0)
• Installing markdown-include (0.8.1): Failed

DBusErrorResponse

[org.freedesktop.DBus.Error.UnknownMethod] ('Object does not exist at path “/org/freedesktop/secrets/collection/_e4_04_80_bc_b0U”',)

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:48 in send_and_get_reply
44│ def send_and_get_reply(self, msg: Message) -> Any:
45│ try:
46│ resp_msg: Message = self._connection.send_and_get_reply(msg)
47│ if resp_msg.header.message_type == MessageType.error:
→ 48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
52│ raise ItemNotFoundException('Item does not exist!') from resp

The following error occurred when trying to handle this error:

ItemNotFoundException

Item does not exist!

at ~/.local/share/pypoetry/venv/lib/python3.10/site-packages/secretstorage/util.py:52 in send_and_get_reply
48│ raise DBusErrorResponse(resp_msg)
49│ return resp_msg.body
50│ except DBusErrorResponse as resp:
51│ if resp.name in (DBUS_UNKNOWN_METHOD, DBUS_NO_SUCH_OBJECT):
→ 52│ raise ItemNotFoundException('Item does not exist!') from resp
53│ elif resp.name in (DBUS_SERVICE_UNKNOWN, DBUS_EXEC_FAILED,
54│ DBUS_NO_REPLY):
55│ data = resp.data
56│ if isinstance(data, tuple):

Cannot install markdown-include.

• Installing mypy (1.3.0)
• Installing myst-nb (0.17.2)
• Installing nbsphinx (0.9.3)
• Installing openai (0.28.0)
• Installing pre-commit (3.3.3)
• Installing pytest-cov (4.1.0)
• Installing rudder-sdk-python (2.0.2)
• Installing ruff (0.1.8)
• Installing sphinx-autobuild (2021.3.14)
• Installing sphinx-book-theme (1.0.1)
• Installing sphinx-copybutton (0.5.2)
• Installing sphinx-panels (0.6.0)
• Installing sphinx-rtd-theme (1.3.0)
• Installing sphinx-typlog-theme (0.8.0)
• Installing termcolor (2.3.0)
• Installing tiktoken (0.5.2)
• Installing toml (0.10.2)
• Installing tox (4.11.4)
• Installing typer (0.9.0)
vboxuser@zen-bassi:~/Downloads/gpt-engineer$

from gpt-engineer.

BigGod12 avatar BigGod12 commented on May 24, 2024

Hi, i was able to fixed the error with this commands..
first resolve the poetry lock file "poetry lock --no-update" then update poetry "poetry update" now update the lock file "poetry lock"
then delete the already poetry env file created for the gpt-engineer project "poetry env remove gpt-engineer-30Bjq_gH-py3.10"
run the "poetry install" this now install poetry with no error..
@captivus @ATheorell @Drugjudy thanks for the responses

from gpt-engineer.

BigGod12 avatar BigGod12 commented on May 24, 2024

I may need some clearance regarding gpt-engineer itself.
is it possible in my created project dir i could put three different JavaScript file in it and ask gpt-engineer to build a backend server for it and it can read through those JS file its self to know the right backend code for them example of building "a Dapp" ??
thanks

from gpt-engineer.

captivus avatar captivus commented on May 24, 2024

Glad to hear the problem is resolved. Re your project functionality question, I suggest chatting with the community in our Discord server.

Closing as resolved.

from gpt-engineer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.