-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
70 lines (59 loc) · 2.63 KB
/
setup.py
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import os
import subprocess
import shutil
from pathlib import Path
def setup_project():
"""
Sets up the project by:
1. Installing required packages from requirements.txt
2. Replacing the mask.py file in carla_bird_eye_view library
"""
# Create requirements.txt with necessary packages
requirements = [
"carla-birdeye-view",
# Add other required packages here
]
with open("requirements.txt", "w") as f:
for req in requirements:
f.write(f"{req}\n")
# Install requirements
print("Installing required packages...")
subprocess.check_call(["pip", "install", "-r", "requirements.txt"])
# Create birdview cache directory structure
cache_path = Path("birdview_v2_cache/Carla/Maps")
cache_path.mkdir(parents=True, exist_ok=True)
print(f"Created directory structure: {cache_path}")
# Find the carla_bird_eye_view installation directory
try:
import carla_birdeye_view
library_path = Path(carla_birdeye_view.__file__).parent
mask_path = library_path / "mask.py"
init_path = library_path / "__init__.py"
# Backup original mask.py
if mask_path.exists():
backup_path = mask_path.with_name("mask.py.backup")
shutil.copy2(mask_path, backup_path)
print(f"Original mask.py backed up to {backup_path}")
if init_path.exists():
backup_path2 = mask_path.with_name("__init__.py.backup")
shutil.copy2(init_path, backup_path2)
print(f"Original mask.py backed up to {backup_path2}")
# Replace with your custom mask.py
custom_mask_path = Path("AdditionalThirdParty/carla_birdeye_view/mask.py") # Update this path
if custom_mask_path.exists():
shutil.copy2(custom_mask_path, mask_path)
print(f"Successfully replaced mask.py with your custom version")
else:
print(f"Error: Custom mask.py not found at {custom_mask_path}")
custom___init___path = Path("AdditionalThirdParty/carla_birdeye_view/__init__.py") # Update this path
if custom___init___path .exists():
shutil.copy2(custom___init___path, init_path)
print(f"Successfully replaced __init__.py with your custom version")
else:
print(f"Error: Custom __init__.py not found at {custom_mask_path}")
except ImportError:
print("Error: carla_birdeye_view package not found. Please check installation.")
except Exception as e:
print(f"Error during setup: {str(e)}")
if __name__ == "__main__":
setup_project()