IT/python

파이썬에서 pandas가 설치되지 않을 때

나의지식 2020. 6. 14. 22:09

pip -install pandas를 눌렀는데

ERROR: Could not find a version that satisfies the requirement pandas (from versions: none)
ERROR: No matching distribution found for pandas

이런 에러메시지가 나오면서 pandas가 설치되지 않으면

pip install --trusted-host=pypi.org --trusted-host=files.pythonhosted.org pandas
와 같은 명령어를 누르면 설치가 된다.

tensorflow도 위와 같은 에러메시지가 나올 때가 있는데 그건 32비트를 깔아서 그렇다. 64비트를 깔면 제대로 된다고 한다.

반응형