mac엔 기본 파이썬 2.x가 있다고 하지만 M1 처음 받았을때 brew 랑 설치해서 보니 3.x가 있었다. 사실 어떻게 구성되어 있는지 잘 모르겠다.
우선 visual studio code를 아래서 다운받아 설치하고 (다운로드한게 다~ )
https://code.visualstudio.com/
다운로드 폴더에 가서 압축 파일 풀고 실행
이후 한글 버전 설치하고 import requests를 했으나 오류가 나서 requests 라이브러가 없어서.
그래서 pip install requests 하니 오류가 난다.
인터넷 뒤져보니 sudo easy_install pip 가 있지만 안되어서 정석대로..
DEPRECATION: Configuring installation scheme with distutils config files is deprecated and will no longer work in the near future. If you are using a Homebrew or Linuxbrew Python, please see discussion at https://github.com/Homebrew/homebrew-core/issues/76621 |
한참 삽질 하다가 파이썬 버전이 3이므로 pip3 으로 pip 업그레이드 하니 되었다.
pip3 install --upgrade pip
이후 bs , reqeusts , 셀레니움을 설치했다.
pip install bs4 ; pip install requests
pip install selenium
이제 다시 import requests 하니 잘 동작한다.
'낙서장' 카테고리의 다른 글
베니치아(베니스) 교통앱 AVM Venezia (0) | 2023.05.11 |
---|---|
mac python requests 한계 (0) | 2022.07.25 |
ModuleNotFoundError: No module named 'bs4' (0) | 2022.07.23 |
python pip 오류 (0) | 2022.07.03 |
파이썬 업데이트 하기 3.10 (0) | 2022.07.03 |
댓글