일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- MYSQL
- nodejs mongodb
- python3
- homebrew
- 맥
- mongodb nodejs driver
- Node.js
- node.js설치
- 맥에 파이썬 설치
- [Object]
- mongo-native
- node.js 연동
- Windows10
- Projection
- 파이썬3
- query
- pip jupyter
- mongoDB [Object]
- collection.find
- MacOS
- console.log
- Installation
- mongodb
- util.inspect
- Jupyter notebook
- Today
- Total
Bon Voyage
macOS Catalina에 python 3, pip 설치하기 본문
새로운 맥에 python 3, pip를 설치해야 하는데 은근 또 기억이 안나서 정리함
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.
설정 방법은 아래와 같다.
$ 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설치! 문서는 아래 링크를 참고하면 된다.
아래와 같이 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 |