[Error] ModuleNotFoundError: No module named 'tree'🦗
What happens?
Python의 Ray 라이브러리를 설치하고 시작할 때, tree가 없다는 에러가 발생하였음.
Failed
pip install tree
pip install tree
로 설치하고 확인해도 에러는 그대로 남아있었고
pip install dm-tree
이 방법으로 해도 해결되지 않았음.
How do I fix it
pip uninstall tree
pip uninstall dm-tree
pip install --upgrade ray
pip install dm-tree
세번 째 줄은 입력하지 않았음. (최신 Ray를 받았기 때문에)
References
'프로그래밍' 카테고리의 다른 글
🌱 Python Matplotlib에서 연속적인 이미지 그리기 (clear) (0) | 2021.04.28 |
---|---|
환경변수로 GPU 번호 설정 (0) | 2021.04.15 |
백준 2608 로마숫자 - 파이썬 풀이 🦄 (0) | 2021.04.12 |
백준 1717 집합의 표현 - 파이썬 풀이 🦄 (0) | 2021.03.31 |
백준 1965 상자넣기 - 파이썬 풀이 🦄 (0) | 2021.03.31 |