Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- natural_language_processing
- Stanford
- cs231n
- pip
- nlp
- tab
- slideshare
- computer_setting
- deeplearning
- machinelearning
- error
- linux
- review
- Vim
- cs224n
- language_model
- gensim
- Ai
- terminal
- code
- Statistics
- git
- paper_review
- json
- install
- seq2seq
- computer
- github
- Standford
- text
Archives
- Today
- Total
NLP/AI/Statistics
python default version 변경 본문
대부분 python 2.7 버전과 3.5버전이 함께 설치되어 사용하는 경우가 많다.
하지만 공개되는 대부분의 tool은 python3 버전에 호환되기 때문에 python3을 default로 변경하여 사용하는 것이 효율적이다.
$ python --version
Python 2.7
$ python3 --version
Python 3.5
기본적인 세팅에서는 위와 같이 python의 default버전이 2.7, python3의 버전이 3.5로 되어 있다.
여기에서 python의 default버전을 3.5로 변경하기 위해서는 아래의 코드를 실행하면 된다.
# original
$ python --version
Python 2.7
$ python3 --version
Python 3.5
==========================================================
# change code
$ alias python = '/usr/bin/python3.5'
$ . ~/.bashrc
==========================================================
# change
$ python --version
Python 3.5
$ python3 --version
Python 3.5
$ python2 --version
Python 2.7
# change code 부분을 실행하면 아래에 change 와 같이 python의 버전이 3.5로 변경되는 것을 확인할 수 있다.
만약 2.7버전을 사용하고 싶을 경우 python2를 작성하면 2.7 버전으로 실행할 수 있다.
'Computer Setting > Python & ETC' 카테고리의 다른 글
python 지수 표현 변경 (0) | 2021.06.11 |
---|---|
python json 파일 한글 깨짐 현상 (0) | 2021.06.09 |
python json 파일 저장 및 불러오기 (0) | 2021.06.09 |
docker 비밀번호 변경 (0) | 2020.10.22 |
Virtualenv 생성 (0) | 2020.10.22 |
Comments