Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error when launching the setup dev script for building Rerun #4444

Closed
oralian opened this issue Dec 6, 2023 · 1 comment
Closed

Error when launching the setup dev script for building Rerun #4444

oralian opened this issue Dec 6, 2023 · 1 comment
Labels
🪳 bug Something isn't working 🧑‍💻 dev experience developer experience (excluding CI)

Comments

@oralian
Copy link

oralian commented Dec 6, 2023

Describe the bug
The script scripts/setup_dev.sh fails in Ubuntu.

To Reproduce

$ git clone https://github.com/rerun-io/rerun.git
$ cd rerun
$ ./scripts/setup_dev.sh
[...]
E: Unable to locate package cmake libarrow-dev
$ 

Desktop (please complete the following information):

  • OS: Ubuntu ARM Jetson Xavier NX

Additional context
To fix the issue I had to change the following line in scripts/setup.sh:

    sudo apt-get -y install 'cmake libarrow-dev'

with:

    sudo apt-get -y install cmake libarrow-dev

And in scripts/setup_dev.sh I had to change:

elif [ -x "$(command -v apt-get)" ]; then sudo apt-get -y install $packagesNeeded

with:

elif [ -x "$(command -v apt-get)" ]; then sudo apt-get -y install pngcrush pipx clang-format flatbuffers-compiler

For context, I'm trying to build and run Rerun on a Jetson Xavier NX.

@oralian oralian added 👀 needs triage This issue needs to be triaged by the Rerun team 🪳 bug Something isn't working labels Dec 6, 2023
@Wumpf
Copy link
Member

Wumpf commented Dec 8, 2023

Thanks for report and proposed! We actually wanted to get rid of these scripts soon since we keep running into issues like that :/.

We want to cover all these things with our pixi environment:

Closing in favor of that one.

@Wumpf Wumpf closed this as not planned Won't fix, can't repro, duplicate, stale Dec 8, 2023
@Wumpf Wumpf added 🧑‍💻 dev experience developer experience (excluding CI) and removed 👀 needs triage This issue needs to be triaged by the Rerun team labels Dec 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🪳 bug Something isn't working 🧑‍💻 dev experience developer experience (excluding CI)
Projects
None yet
Development

No branches or pull requests

2 participants