KelvinJiang
KelvinJiang
I also encountered this issue when using Jetson Orin Nano. I found that the dev_start.sh script in Apollo is judged as aarch64, and when `lsmod | grep nvgpu ` returns...
I wrote a python program to detect time jump: ```python import datetime import time while True: current_time = datetime.datetime.now() print(current_time) time.sleep(0.0001) ``` When the cyber rate log detect time jump....
Thanks for replay. My task is an empty func,just return.
是找不到env文件,这个函数这里把报错设置为True,可以看到在找env文件时出现错误。 def find_dotenv( filename: str = '.env', raise_error_if_not_found: bool = True, usecwd: bool = False, ) -> str: 手动创建`MindSearch/docker/msdl/temp/.env`文件,可以解决这个问题。 这个文件解决后,后面还会遇到/home/ai/code/MindSearch/docker/msdl/temp/docker-compose.yaml文件不正确的问题,提示`'/home/ai/code/MindSearch/docker/msdl/temp/docker-compose.yaml', service 'name' must be a mapping not a string.` 原因在于根据用户选择生成的yaml格式有问题,第一行多了`name:...
手动构建出来的容器,使用`docker-compose -f /home/ai/code/MindSearch/docker/msdl/temp/docker-compose.yaml --env-file /home/ai/code/MindSearch/docker/msdl/temp/.env up -d`启动后,backend一直在重启,不知道什么原因。