forked from facebookresearch/vggsfm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
45 lines (33 loc) · 1.3 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
# This Script Assumes Python 3.10, CUDA 12.1
conda deactivate
# Set environment variables
export ENV_NAME=vggsfm_tmp
export PYTHON_VERSION=3.10
export PYTORCH_VERSION=2.1.0
export CUDA_VERSION=12.1
# Create a new conda environment and activate it
conda create -n $ENV_NAME python=$PYTHON_VERSION
conda activate $ENV_NAME
# Install PyTorch, torchvision, and PyTorch3D using conda
conda install pytorch=$PYTORCH_VERSION torchvision pytorch-cuda=$CUDA_VERSION -c pytorch -c nvidia
conda install -c fvcore -c iopath -c conda-forge fvcore iopath
conda install pytorch3d=0.7.5 -c pytorch3d
# Install pip packages
pip install hydra-core --upgrade
pip install omegaconf opencv-python einops visdom tqdm scipy plotly scikit-learn imageio[ffmpeg] gradio trimesh huggingface_hub
# Install LightGlue
git clone https://github.com/jytime/LightGlue.git dependency/LightGlue
cd dependency/LightGlue/
python -m pip install -e . # editable mode
cd ../../
# Force numpy <2
pip install numpy==1.26.3
# Ensure the version of pycolmap is 3.10.0
pip install pycolmap==3.10.0 pyceres
# (Optional) Install poselib
pip install poselib==2.0.2