-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·15 lines (14 loc) · 807 Bytes
/
setup.sh
File metadata and controls
executable file
·15 lines (14 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pip install -v -e .
cd packages/DFA3D
bash setup.sh 0
cd ../..
cd packages/TorchEx
pip install -v .
cd ../..
python packages/Voxelization/setup.py develop
python packages/Voxelization/setup_v2.py develop
# Question: A script repeatedly shows syntax errors during execution, but when copied and pasted into a newly created script, it runs without issues.
# Answer: The issue likely lies in the script's file format, which might differ between Windows and Unix systems. You can use vim to check the file format by entering :set ff in command mode.
# For Windows, the format should display as fileformat=dos.
# For Unix, it should display as fileformat=unix.
# To fix the issue, you can change the file format to Unix by entering :set ff=unix in vim. After saving the script, it should execute without errors.