update remove conda
Browse files- app.py +2 -2
- packages.txt +2 -1
app.py
CHANGED
@@ -48,8 +48,8 @@ def install_cuda_toolkit():
|
|
48 |
install_cuda_toolkit()
|
49 |
gs_path = str(Path(__file__).parent / 'src/third-party/diff-gaussian-rasterization-w-depth')
|
50 |
os.system(f'pip install -e {gs_path}')
|
51 |
-
os.system('
|
52 |
-
os.system('conda install conda-forge::ffmpeg')
|
53 |
|
54 |
from dgl.geometry import farthest_point_sampler
|
55 |
|
|
|
48 |
install_cuda_toolkit()
|
49 |
gs_path = str(Path(__file__).parent / 'src/third-party/diff-gaussian-rasterization-w-depth')
|
50 |
os.system(f'pip install -e {gs_path}')
|
51 |
+
os.system('pip install dgl -f https://data.dgl.ai/wheels/torch-2.4/cu124/repo.html')
|
52 |
+
# os.system('conda install conda-forge::ffmpeg')
|
53 |
|
54 |
from dgl.geometry import farthest_point_sampler
|
55 |
|
packages.txt
CHANGED
@@ -1 +1,2 @@
|
|
1 |
-
libglm-dev
|
|
|
|
1 |
+
libglm-dev
|
2 |
+
ffmpeg
|