leobcc
commited on
Commit
·
6561b5f
1
Parent(s):
6325697
Removing some unnecessary setup files
Browse files- setup_env_variables.ps1 +0 -12
- setup_kaolin.ps1 +0 -9
- setup_pytorch3d.ps1 +0 -8
setup_env_variables.ps1
DELETED
@@ -1,12 +0,0 @@
|
|
1 |
-
# This file is used to setup the necessary environment variables, in particular if the code is ruun in a virtual environment
|
2 |
-
# This is supposed to be ran before the installation and setup of the other libraries and dependencies
|
3 |
-
# Possible issues that might occur if these variables are not set:
|
4 |
-
# PyTorch: might be installed by default without GPU support
|
5 |
-
# TorchVision: might be installed by default without GPU support
|
6 |
-
# PyTorch3D: might be installed by default without GPU support
|
7 |
-
# Cuda: might have compatibility issues with newer (or older) versions of Visual Studio
|
8 |
-
# Kaolin: might have compatibility issues with newer (or older) versions of Visual Studio
|
9 |
-
|
10 |
-
$env:force_cuda = 1
|
11 |
-
$env:VSINSTALLDIR = "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community"
|
12 |
-
$env:VisualStudioVersion = "16.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup_kaolin.ps1
DELETED
@@ -1,9 +0,0 @@
|
|
1 |
-
# This file is used to install kaolin (in this case version 0.10.0)
|
2 |
-
# It needs to be noted that kaolin has many requirements on the version of other libraries
|
3 |
-
# Possible issues of compatibility: cuda and Visual Studio version might need to be selected accordingly
|
4 |
-
# More details about the installation and requirements can be found at https://kaolin.readthedocs.io/en/v0.10.0/notes/installation.html
|
5 |
-
|
6 |
-
$git clone --recursive https://github.com/NVIDIAGameWorks/kaolin
|
7 |
-
$cd kaolin
|
8 |
-
$git checkout v0.10.0
|
9 |
-
$python setup.py develop
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setup_pytorch3d.ps1
DELETED
@@ -1,8 +0,0 @@
|
|
1 |
-
# This file is used to install PyTorch3D
|
2 |
-
# It needs to be noted that PyTorch3D can be installed in different ways depending on the OS and the necessity of cuda support
|
3 |
-
# Possible issues of compatibility: cuda and Visual Studio version might need to be selected accordingly
|
4 |
-
# More details about the installation and requirements can be found at https://github.com/facebookresearch/pytorch3d/blob/main/INSTALL.md
|
5 |
-
|
6 |
-
$pip install "git+https://github.com/facebookresearch/pytorch3d.git@stable"
|
7 |
-
$cd pytorch3d
|
8 |
-
$python setup.py install
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|