Bon Voyage

macOS Catalina에 python 3, pip 설치하기 본문

설치

macOS Catalina에 python 3, pip 설치하기

nangkyeong 2019. 12. 30. 00:04

새로운 맥에 python 3, pip를 설치해야 하는데 은근 또 기억이 안나서 정리함


 

 

 

Python Release Python 3.8.1

The official home of the Python Programming Language

www.python.org

Python 공식 홈페이지에서 현재 기준 (2019. 12) 최신 버전의 Mac용 python 다운받고 설치함

그 후 terminal에서 python3 을 실행하면 python 3.8.1 (2019년 12월 기준 최신 버전)이 실행됨을 확인

 

 

그런데 python3을 쉽게 python으로 쓰고 싶어서 환경변수로 설정을 해 주기로 함!

 

Linux와 달리 Mac은 .~/.bash_profile에 환경 변수 설정을 해 주면 된다. 왜 ~/.bash_profile인지는 아래 post를 참고! 

For permanent setting, you need to understand where to put the “export” script. Where here means Bash Shell Startup Script like /etc/profile (system-wide operations), ~/.bash_profile (user based operations), ~/.bashrc (non-login interactive shells). In Unix/Linux for the interactive login shells, ./bash_profile opens only at the first time in logging in and /.bashrc gets loaded thereafter. But MAC OS only loads ./bash_profile even after the first terminal.

 

Setting up Environment Variables in Mac OS

As I am getting used to MAC OS instead of Windows, I felt the need to make myself fully understood how to manage environment variables in…

medium.com

설정 방법은 아래와 같다. 

$ vim ~/.bash_profile
#set an alias of python3 for python
alias python='python3'

$ source ~/.bash_profile

# after setting, when you type 'python' then python3 will run.
$ python
Python 3.8.1 (v3.8.1:1b293b6006, Dec 18 2019, 14:08:53) 
[Clang 6.0 (clang-600.0.57)] on darwin
Type "help", "copyright", "credits" or "license" for more information.

 


 

다음은 pip설치! 문서는 아래 링크를 참고하면 된다.

 

Installation — pip 19.3.1 documentation

Python and OS Compatibility pip works with CPython versions 2.7, 3.5, 3.6, 3.7, 3.8 and also PyPy. This means pip works on the latest patch version of each of these minor versions. Previous patch versions are supported on a best effort approach. pip works

pip.pypa.io

아래와 같이 get-pip.py를 통해 pip를 설치할 수 있다.

# download get-pip.py
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py

# run get-pip.py
python get-pip.py

만약 pip 업그레이드가 필요하다면 아래의 명령어를 사용!

# for upgrade
pip install -U pip

'설치' 카테고리의 다른 글

Using tmux on macOS Catalina  (0) 2019.12.30
macOS에 virtualenv 설치하고 사용하기  (0) 2019.12.30
Windows에서 Node.js 설치하기  (0) 2019.07.17
MacOS에 Jupyter 설치하기  (0) 2019.07.13
MacOS에 Homebrew로 python3 설치하기  (0) 2019.07.13
Comments