ryankert01 commented on code in PR #677:
URL: https://github.com/apache/mahout/pull/677#discussion_r2593139015


##########
.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:
   In short, other two used by mahout main project, we have to cooperate 



-- 
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]

Reply via email to