Raspberry Pi에 팬더를 어떻게 설치합니까?


10

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설치 하는 대체 경로를 시도했지만 pandas0.13이 아닌 0.8 버전입니다. 후속 조치를 시도하면 sudo pip install pandas --upgrade위와 동일한 결과가 나타납니다.


무슨 오류 ?? 단어 '경고'로 시작하는 줄은 경고이므로 무시하십시오.
lenik 2016 년

더 이상 설치가 끝나지 않아서 걱정이되었습니다. 이것은 단지 오랜 경고의 시작이었습니다. 명확히하기 위해 편집했습니다.
Jamie Bull

깨졌습니까? 팬더는 numpy를 사용하므로 매우 빠른 데스크톱 컴퓨터에서도 빌드하는 데 시간이 오래 걸릴 수 있습니다. 이것이 완료 되었습니까? 나는 파이에 프로젝트에 팬더를 사용하는 것을 고려하고 있으므로 운이 좋거나 포기했는지 궁금합니다.
존 에워 트

예, 작동했습니다. 건축하는 데 오랜 시간이 걸렸지 만 결국 도착했으며 그 이후로 잘 작동했습니다.
Jamie Bull

지금 바로 똑같은 문제에 직면하여 @JamieBull을 끝내는 데 얼마나 걸렸습니까?
Ben

답변:


12

기본에 다시가는, 나는 보았다 설치 페이지 에 대한 pandas그 발견 pip install pandas에 권장 경로되지 않습니다 linux시스템.

sudo apt-get install python-pandas 트릭을했다.


2
이것은 작동하지만 Raspbian Jessie를 사용할 때 팬더 0.14.1 (이전)을 설치합니다. 다음은 두 가지 다른 옵션을 제공하는 답변입니다. stackoverflow.com/questions/42682928/…
wroscoe

2
이것은 Python 3을 사용하기 위해 기본 Python 2에 설치됩니다sudo apt-get install python3-pandas
Rami Alloush

왼쪽의 틱을 클릭하여 자신의 답변을 수락하십시오. 이것 만이 질문을 끝내고 해마다 다시 나타나지 않습니다.
Ingo

3

sudo apt-get install python3-pandasPi4 및 팬더 버전에서 나를 위해 작동합니다 0.23.3.


이것이 Pi3B +에 설치할 수있는 유일한 방법입니다
SteveC


0

개인적으로 가상 환경을 만들고 설치 pandas합니다 pip( numpy길이에 따라 설치 될 관련 종속성 )


0

sudo pip3 install pandas 광산에서 일했다


1
pip3영업 이익이 사용 된 반면 Python3입니다 pip, 어떤 수단 그는 따라서 그는 시도해야 파이썬 2를 사용하고 sudo pip install pandas사용하는 대신 pip3파이썬이 모듈을 사용하여 설치 찾을 수 없습니다 때문에 pip3.
user96931

1
반드시 @ user96931 일 필요는 없습니다. 이것은 꽤 오래된 질문이지만 현재 시스템 python에서 Python 3에 pip링크 하고에 링크 할 수 pip3있습니다.
Ghanima

모호성을 통해 위험 오류보다 명시적인 것이 좋습니다.
user96931
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.