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

Add core dependencies installation script #80

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ RUN apt-get install -y --no-install-recommends --no-install-suggests wget && \
RUN cp -r /ceres_installed/* /usr/local/

# Build pyceres.
RUN git clone --depth 1 -b v1.0 --recursive https://github.com/cvg/pyceres
RUN git clone --depth 1 -b v2.3 --recursive https://github.com/cvg/pyceres
pablospe marked this conversation as resolved.
Show resolved Hide resolved
RUN python3 -m pip install --upgrade pip
RUN cd pyceres && \
pip wheel . --no-deps -w dist-wheel -vv && \
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_core_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ sudo ${root_folder}/scripts/install_colmap.sh
python3 -m pip install git+https://github.com/cvg/[email protected]

# Pyceres.
python3 -m pip install git+https://github.com/cvg/pyceres.git@v1.0
python3 -m pip install git+https://github.com/cvg/pyceres.git@v2.3
pablospe marked this conversation as resolved.
Show resolved Hide resolved