Replies: 7 comments 13 replies
-
Hey @jerreith , can you share your docker file? I'm surprised that |
Beta Was this translation helpful? Give feedback.
-
Here is the Dockerfile: FROM ubuntu |
Beta Was this translation helpful? Give feedback.
-
It did work last week so something changed... Please let me know when a new version is available. Thank you! |
Beta Was this translation helpful? Give feedback.
-
I did a docker build with --no-cache so it pulled the source. Let me check the approach you suggested. Thanks |
Beta Was this translation helpful? Give feedback.
-
Is there already a fix for the "FileNotFoundError: [Errno 2] No such file or directory: '/root/.config/cs_tools/.cs_tools/local/lib/python3.10/dist-packages'" issue? I cannot run cs_tools anymore from the cmdline after I upgraded. |
Beta Was this translation helpful? Give feedback.
-
We face the same issue / error when running the bash:
It used to work until the 24/03/2024. |
Beta Was this translation helpful? Give feedback.
-
Ok, I also see this one in the release notes for 1.5.0: "temporarily removed BigQuery Database Syncer". Any idea when that returns? We can not use it without the BigQuery syncer. Thanks. |
Beta Was this translation helpful? Give feedback.
-
as of today the cs_tools stopped working in docker.
First the build failed, I had to add "RUN ln -s /usr/bin/python3 /usr/bin/python" to the Dockerfile to get the install working again.
Now the "CMD /root/.config/cs_tools/.cs_tools/bin/cs_tools self info --anonymous" fails with below error:
File "/root/.config/cs_tools/.cs_tools/bin/cs_tools", line 5, in
from cs_tools.cli.commands.main import run
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/cs_tools/cli/commands/main.py", line 11, in
from cs_tools.cli import _analytics
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/cs_tools/cli/_analytics.py", line 26, in
from cs_tools.cli.ux import rich_console
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/cs_tools/cli/ux.py", line 12, in
from cs_tools.cli.types import SyncerProtocolType
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/cs_tools/cli/types.py", line 16, in
from cs_tools.cli.dependencies.syncer import DSyncer
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/cs_tools/cli/dependencies/init.py", line 1, in
from .thoughtspot import thoughtspot
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/cs_tools/cli/dependencies/thoughtspot.py", line 14, in
from cs_tools.settings import (
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/cs_tools/settings.py", line 61, in
class MetaConfig(_GlobalModel):
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/cs_tools/settings.py", line 68, in MetaConfig
environment: Optional[ExecutionEnvironment] = ExecutionEnvironment()
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/pydantic_settings/main.py", line 84, in init
super().init(
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/pydantic/main.py", line 171, in init
self.pydantic_validator.validate_python(data, self_instance=self)
File "/root/.config/cs_tools/.cs_tools/lib/python3.10/site-packages/cs_tools/utils.py", line 194, in determine_editable_install
for path in pathlib.Path(site_directory).iterdir():
File "/usr/lib/python3.10/pathlib.py", line 1017, in iterdir
for name in self._accessor.listdir(self):
FileNotFoundError: [Errno 2] No such file or directory: '/root/.config/cs_tools/.cs_tools/local/lib/python3.10/dist-packages'
It seems the directory does not exists: ls: cannot access '/root/.config/cs_tools/.cs_tools/local': No such file or directory
Any idea?
Thanks,
Jeroen
Beta Was this translation helpful? Give feedback.
All reactions