일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ros2 튜토리얼 환경설정
- ros2 development guides
- ROS FOXY 튜토리얼
- 코드업
- ros2 튜토리얼
- nav2 설치
- nav2 tutorial
- humble 환경설정
- nav2 first-time robot setup guide
- error
- nav2 튜토리얼
- development guides
- ros2 foxy docker
- Python
- nav2 development guides
- CodeUp
- ros2 remapping
- nav2 dev contatiner
- docker foxy
- first-time robot setup guide
- humble development guides
- CODEUP 6073
- Nav2 document
- nav2 getting started
- foxy nav2
- ros2 foxy tutorial
- nav2 development guides
- Foxy tutorial
- ros2 configuring environment
- ros2 환경설정
Archives
- Today
- Total
목록error (3)
BAN2ARU
PIL.UnidentifiedImageError: cannot identify image file
PIL.UnidentifiedImageError: cannot identify image file tensorflow/core/kernels/data/generator_dataset_op.cc:107] Error occurred when finalizing GeneratorDataset iterator: Failed precondition: Python interpreter state is not initialized. The process may be terminated. 잘 돌아가던 코드가 다음과 같은 오류로 돌아가지 않는다면 학습 또는 test/validation set에서 읽을 수 없는 파일이나 크기가 0인 파일이 포함된 것임.
Language/Python
2022. 3. 2. 15:09
[Python] for문에서 'int' object is not iterable 오류
TypeError: 'int' object is not iterable 오류가 발생한 경우에는 for i in 변수 : --> for i in range(변수) 로 변경하면 오류가 해결된다. 오류가 발생한 이유는 변수가 'int' 즉 숫자형이여서 발생한 것인데, for문은 list형에 있는 iterable 즉, 단계별로 수행할 수 있는 list의 형태가 필요하기 때문이다. range(변수)로 하면 해당 변수가 0~변수 값까지의 list형식으로 변환되어 오류가 해결된당!
Language/Python
2022. 2. 23. 15:31