티스토리 뷰
2023.2.2.
이제 되는 것 같다. 나의 경우 Visual Code 를 사용하는데,
비쥬얼 스튜디오 코드에서 파이썬을 적용시킬 때
인터프리터를 연결해줘야한다...
[해결방법]
(Ctrl) + (Shift) + (P)를 누른 후 (Python 인터프리터 선택 하기)
pip install wheel
DEPRECATION: pefile is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1
will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option. Discussion can be found at https://github.com/pypa/pip/issues/8559
wheel 이 설마 모듈이라고는 생각 못했는데, 아래와 같이 wheel 모듈을 설치하기만 하면되는 아주 간단한 문제였다.
터미널에서 다음과 같이 입력한다.
pip install wheel
ㅇ 파이썬 컴파일 오류메시지:
DEPRECATION: future is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1 will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option. Discussion can be found at https://github.com/pypa/pip/issues/8559
ㅇ 해석:
이 오류 메시지는 "future" 패키지가 오래된 "setup.py install" 방법으로 설치되고 있다는 것을 경고하며, 이 방법은 이제 사용되지 않는다는 것을 알려주고, 'wheel' 패키지도 설치되어 있지 않음을 알려줍니다. 대안으로 '--use-pep517' 옵션을 제안하며, 이는 Python 향상 건인 PEP 517을 참조하며, 새로운 Python 패키지를 빌드하고 배포하는 방법을 설명합니다.
'파이썬' 카테고리의 다른 글
파이썬 주석처리 단축키가 안먹힐 때(Win+Space) (0) | 2023.01.28 |
---|---|
python, 파이썬 로또번호 추출기 만들기 (0) | 2023.01.28 |
python py를 exe 실행 파일로 만드는 방법 (0) | 2023.01.15 |
"Getting requirements to build wheel" means. (0) | 2023.01.14 |
ModuleNotFoundError: No module named 'selenium' 오류 (0) | 2022.07.18 |