목록pip install (2)
IT_World
환경 os : Ubuntu 18.64 파이썬으로 프로젝트를 진행하게 되면 pip으로 여러 패키지를 설치하게 된다. pip list를 입력하면 pip으로 현재 가상 환경에 설치된 모든 패키지가 나온다. $ pip list 어쨌든 이 패키지들을 그대로 다른 환경에 설치하고 싶을 때는 requirements.txt를 이용해야 한다. requirements.txt는 현재 가상환경에 설치된 패키지 목록이 나열되어있는 텍스트 파일이다. 이름이 requirements.txt로 정해진 건 아니다. re.txt 등등 마음대로 지어도 되지만, 하나의 룰이다. 대부분 github나 project에서 requirements.txt라는 이름을 사용하고 있으니 웬만하면 requirements로 쓰는 것이 좋다. requireme..
ModuleNotFoundError: No module named 'easydict' EasyDict : 속성으로 dict 값에 액세스 할 수 있습니다 (재귀 적으로 작동). python dicts에 대한 자바 스크립트와 유사한 속성 점 표기법 에러 해결방법 ↓ sudo pip install easydict 또는 pip install easydict https://pypi.org/project/easydict/ 참조 : ImportError: No module named easydict I'm trying to run the demo of py-faster-rcnn based on this github page. I have done all the previous steps. But When I try ..