Raspi에 Python Pandas를 설치하려고하는데 이상한 오류가 있습니다.
~ $ pip install pandas
Downloading/unpacking pandas
Downloading pandas-0.13.1.tar.gz (6.1Mb): 6.1Mb downloaded
Running setup.py egg_info for package pandas
warning: no files found matching 'README.rst'
no previously-included directories found matching 'doc/build'
warning: no previously-included files matching '*.so' found anywhere in distribution
warning: no previously-included files matching '*.pyd' found anywhere in distribution
warning: no previously-included files matching '*.pyc' found anywhere in distribution
warning: no previously-included files matching '.git*' found anywhere in distribution
warning: no previously-included files matching '.DS_Store' found anywhere in distribution
warning: no previously-included files matching '*.png' found anywhere in distribution
....
pandas/src/klib/khash_python.h:13:1: warning: statement with no effect [-Wunused-value]
pandas/src/klib/khash_python.h: In function âkh_del_pymapâ:
pandas/src/klib/khash_python.h:38:1: warning: statement with no effect [-Wunused-value]
pandas/src/klib/khash_python.h: In function âkh_del_pysetâ:
pandas/src/klib/khash_python.h:44:1: warning: statement with no effect [-Wunused-value]
pandas/src/klib/khash_python.h: In function âkh_del_strboxâ:
pandas/src/klib/khash_python.h:49:1: warning: statement with no effect [-Wunused-value]
그런 다음 오랫동안 더 많은 오류 경고가 표시됩니다. 실제로 실패하지는 않지만 30 분이 지나도 완료되지 않습니다. 여기서 무슨 일이 일어나고 있으며 어떻게 해결합니까?
추가 편집
sudo apt-get install python-pandas
설치 하는 대체 경로를 시도했지만 pandas
0.13이 아닌 0.8 버전입니다. 후속 조치를 시도하면 sudo pip install pandas --upgrade
위와 동일한 결과가 나타납니다.