명령어 등등/컴퓨터 세팅

새 맥에 파이썬 설치해보기 (파이썬3은 설치완료)

mcdn 2021. 1. 6. 18:02
반응형

github.com/tounho/vinyl

 

tounho/vinyl

Create vinyl images from video files. Contribute to tounho/vinyl development by creating an account on GitHub.

github.com

vinyl 이미지 만들어보고 싶어서 이것저것 설정해봄 

 

 

brew install python3

명령어로 파이썬 3을 설치했다. 

하지만 파이썬 pip install pillow할 때 계속 2.7버전 Python에 저장하는 거임 ㅜㅜ 

 

 

 

 

그래서 찾아보니 

stackoverflow.com/questions/11268501/how-to-use-pip-with-python-3-x-alongside-python-2-x

 

How to use pip with Python 3.x alongside Python 2.x

I installed Python 3.x (besides Python 2.x on Ubuntu) and slowly started to pair modules I use in Python 2.x. So I wonder, what approach should I take to make my life easy by using pip for both Py...

stackoverflow.com

curl -0 https://bootstrap.pypa.io/get-pip.py 

sudo python3 get-pip.py

두 명령어 때리니까 

pip install pillow 3버전에 바로 저장됨 

 

크~ 

그다음 필요한 패키지 다 저장 

pip install pillow, 

pip install svglib

이거까지 설치하고 돌리니까 돌아는 감 

 

대신 그 다음에 CREATE_NEW_CONSOLE부분에서 

윈도우만 된다고 해서 프로젝트는 포기함 

ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ

 

 

뭐 결론은 파이썬 3 설치 완료했으니까 오케이. 

 

반응형