Skip to content

Commit

Permalink
add setup_colab.sh for Colab configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
RenkeHuang committed Nov 18, 2024
1 parent 574083a commit 8dc92ce
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions setup_colab.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/bash

# Exit script on any error
set -e

# Clone the repository
if [ ! -d "point_utils" ]; then
git clone https://github.com/RenkeHuang/point_utils.git
fi

# Navigate to the repository directory
cd point_utils

# Install the package
pip install .

0 comments on commit 8dc92ce

Please sign in to comment.