guan404ming commented on code in PR #677: URL: https://github.com/apache/mahout/pull/677#discussion_r2593062492
########## .devcontainer/setup.sh: ########## @@ -0,0 +1,32 @@ +#!/usr/bin/env bash +set -eux + +# Install Rust + Cargo +if ! command -v cargo >/dev/null 2>&1; then + curl https://sh.rustup.rs -sSf | sh -s -- -y + echo 'source $HOME/.cargo/env' >> ~/.bashrc +fi + +# Common dev tools +apt-get update +apt-get install -y \ + build-essential \ + pkg-config \ + git \ + vim + + +# uv Review Comment: Here comes 3 pkg management tools lol, how about migrate to use uv only? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
