IT/python

파이썬에서 라이브러리가 설치되지 않을 때 해결 방법

나의지식 2024. 9. 27. 21:42

방법1. trusted host 지정

아래와 같이 pip intall과 라이브러리 사이에 trusted host에 대한 내용을 적어준다. 

pip install --trusted-host=pypi.org --trusted-host=files.pythonhosted.org pandas

방법1이 안 되면 방법2를 한다. 

 

방법2. pypi.org에서 라이브러리를 다운

https://pypi.org/

 

PyPI · The Python Package Index

The Python Package Index (PyPI) is a repository of software for the Python programming language.

pypi.org

에 들어가 해당 라이브러리를 검색한다. 

좌측에 Download files를 누른다. 

그리고 우측에 Built Distribution에 whl파일을 다운 받는다. 그리고 그 파일을 pip파일이 있는 Scripts 디렉토리에 복사한다. 

 

그리고

pip install beautifulsoup4-4.12.3-py3-none-any.whl

와 같이 pip install 뒤에 다운 받은 파일을 써주면 설치가 된다. 

 

How to solve installation issues for Python libraries

 

Method 1: Specify trusted host

Add the trusted host information between "pip install" and the library name as follows:

pip install --trusted-host=pypi.org --trusted-host=files.pythonhosted.org pandas

If Method 1 doesn't work, try Method 2.

 

Method 2: Download the library from pypi.org

Go to https://pypi.org/

 

PyPI · The Python Package Index

The Python Package Index (PyPI) is a repository of software for the Python programming language.

pypi.org

 

Search for the desired library

Click on "Download files" on the left side

On the right side, under "Built Distribution," download the .whl file

Copy the downloaded file to the Scripts directory where pip is located

Install the library using the command:

pip install beautifulsoup4-4.12.3-py3-none-any.whl

(Replace the filename with the one you downloaded)

 

This method should successfully install the library.

반응형