본문 바로가기
컴퓨터/Python

[Python] 파이썬, Pandas 32bit 설치 오류 정리

by sjblog 2024. 5. 4.
반응형

파이썬 32bit에서 pandas를 설치하는 경우 오류

 

1. Build Tools for Visual Studio 설치 필요

https://pandas.pydata.org/docs/development/contributing_environment.html

 

Creating a development environment — pandas 2.2.2 documentation

Creating a development environment To test out code changes, you’ll need to build pandas from source, which requires a C/C++ compiler and Python environment. If you’re making documentation changes, you can skip to contributing to the documentation but

pandas.pydata.org

 

Pandas 공식 사이트에 따르면, 윈도우의 경우 Build Tools for Visual Studio 2022 설치를 필요로 하고 있습니다.

 

Visual Studio 2022 전부를 설치할 필요는 없고, Build Tools for Visual Studio 2022 만 선택적으로 설치하시면 됩니다.

 

https://visualstudio.microsoft.com/ko/downloads/

 

Visual Studio Tools 다운로드 - Windows, Mac, Linux용 무료 설치

Visual Studio IDE 또는 VS Code를 무료로 다운로드하세요. Windows 또는 Mac에서 Visual Studio Professional 또는 Enterprise Edition을 사용해 보세요.

visualstudio.microsoft.com

 

1. Visual Studio Community 2022

2. C++를 사용한 데스크톱 개발 또는 (Desktop development with C++)

 

2. 파이썬 32bit 버전과 Pandas 버전

https://pypi.org/project/pandas/2.0.3/#files

 

pandas

Powerful data structures for data analysis, time series, and statistics

pypi.org

 

pip install pandas==2.0.3

 

위 사이트에서 확인할 수 있듯이, Pandas 버전 2.0.3에는

pandas-2.0.3-cp311-cp311-win32.whl

를 확인할 수 있습니다.

 

Pandas 2.0.3 버전에, 파이썬 3.11버전, 윈도우 32bit에서 사용할 수 있는 wheel 파일입니다.

 

그밖에 파이썬 3.10, 3.9, 3.8 버전까지 설치할 수 있는 wheel 파일을 제공합니다.

 

 

https://pypi.org/project/pandas/2.1.0/#files

 

pandas

Powerful data structures for data analysis, time series, and statistics

pypi.org

 

문제는 Pandas 2.1.0 버전부터 윈도우 32bit 버전 wheel 파일을 제공하고 있지 않습니다.

 

따라서, 파이썬 32bit 버전에서 Pandas 2.1.0 이상을 사용할 경우 설치 시 오류가 발생할 수 있습니다.

 

 

 

파이썬 32bit 3.11, 3.10, 3.9, 3.8 버전

Pandas 2.0.3 버전 이하 (pip install pandas==2.0.3)

환경에 맞게 설치하시길 바랍니다.

반응형