강의

멘토링

로드맵

Inflearn Community Q&A

jhseung941138's profile image
jhseung941138

asked

Getting started with Python data analysis using public data

[3/21] From technical statistics to report generation in one line of code - Pandas Profiling

module 'pandas_profiling' has no attribute '__version__'

Written on

·

562

1

안녕하세요. 

pandas profiling 에서 version 체크를 할 경우 계속해서 

[module 'pandas_profiling' has no attribute '__version__']

이처럼 오류가 발생합니다.

혹 stackoverflow 에 해결법이 있을것 같아 찾아보았지만(해당링크)

해도 안되네요. 참고로 conda 와 cmd 창에 pandas-profiling 을 설치할 경우 

already satisfied 라고 나옵니다. 

pythonnumpypandas

Answer 1

0

todaycode님의 프로필 이미지
todaycode
Instructor

안녕하세요.

일부 판다스프로파일링에서 __version__ 을 출력하려고 할 때 문의주신 것처럼 버전 표기가 안 되는 문제가 발생하는 질문을 여러 번 받았어요.

해당 코드는 판다스프로파일링이 잘 설치되었는지 확인하기 위한 용도로 실습에 추가한 내용인데요.

아래와 같이 도움말 출력을 해보시겠어요?

 

다음과 같이 도움말 출력이 잘 된다면 판다스프로파일링이 잘 설치된 것입니다.

또, 강의의 다음 코드를 따라해보세요.

jhseung941138's profile image
jhseung941138

asked

Ask a question