1. 잘못된 시도...ㅠ
- 쥬피터 노트북에서 설치 시 에러
2. 권리자 권한으로 설치
Anaconda Prompt -> 관리자 권한
conda install -c conda-forge geopandas
https://m.blog.naver.com/leeyubin2000/221547856689
잘 설치될 줄 알았는데 오류 발생....
OSError: could not find or load spatialindex_c-64.dll
위 블로그에서 오류날 경우 소개해 준 블로그 글에선 pipwin을 설치해서 다른 라이브러리들을 더 설치해주라고 했는데... 귀찮았다....
https://codedragon.tistory.com/9671
이 블로그에서는 whl 파일을 다운로드 받아서 pyproj, shapely, GDAL, Fiona, geopandas 순서로 설치하라고 했는데, 그것도 싫었다...ㅎㅎ;;
3. rtree 설치
https://github.com/conda-forge/geopandas-feedstock/issues/78
conda install -c conda-forge rtree=0.9.3
누군가가 channel을 섞으면 안 된다고, conda-forge를 보라고 했지만... 아무튼 저걸 입력하니까 geojson이 설치되었으니 보지 않는다...^^
https://conda-forge.org/docs/user/introduction.html#how-can-i-install-packages-from-conda-forge
기타 - 오류 해결엔 도움이 되지 않았지만, 새로 습득한 내용들...
1) 가상 환경 생성 + 버전 확인
https://m.blog.naver.com/woosoung1993/221614302574
2) shp 파일에서 한글 깨질 때 : encoding='euc=kr' 또는 encoding='utf-8' 을 read_file 속성으로 넣기
(상단 참조 블로그) https://m.blog.naver.com/leeyubin2000/221547856689
3) python 프로젝트 패키징 & 배포
패키징 : 실행 파일들을 하나로 합쳐 배포&설치 가능한 파일로 만들기
wheel : (.whl 확장자) 파이썬의 build package; 일반적인 source distribution 보다 빠른 설치가 가능해서 공식적으로 권장되는 포맷
https://jammdev.tistory.com/34
4) whl 파일 설치 방법
https://tradeoff81.tistory.com/54
5) 파이썬 패키지 설치&제거
pip : Python Install Package
- cmd에 pip를 입력하면 pip 사용법이 출력됨
- pip list : 설치된 패키지 리스트 확인 가능
- pip uninstall 패키지명 : 패키지 제거
'ML > Python' 카테고리의 다른 글
[Pandas] DataFrame 행/열 출력 개수 지정: set_option (0) | 2021.11.12 |
---|---|
shp 파일[shapefile], 파이썬에서 shp 파일 읽는 법 - geopandas, shapefile, fiona, osgeo (0) | 2021.11.10 |
[Python] 코드 실행 시간 측정 (0) | 2021.11.09 |
댓글