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
- SVN
- centos
- yum
- php
- Python
- 확장자
- JavaScript
- Postfix
- install
- smarty
- mariadb
- TPL
- TextBox
- Selectbox
- ubuntu
- 문자열자르기
- i18n
- jQuery
- 천단위
- Oracle
- 부모창
- RabbitMQ
- docker
- 일괄변경
- MySQL
- Eclipse
- replace
- random
- 한글 깨짐
Archives
- Today
- Total
목록python 기본설정 (1)
wilson's story
[Ubuntu] Python 2.x 를 제거하고 Python 3.x 을 기본으로 설정하는 방법
1. Python 2.x 제거sudo apt remove python2sudo apt autoremove 2. Python 3.x 을 기본 Python 으로 설정 Python 명령어 등록sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1Python 기본 버전 설정sudo update-alternatives --config python 3. PIP 설정 변경Python 2.x 를 제거 후 pip 가 Python 2 버전으로 설정되어 있을 수있다. Python 3 에 대한 pip 를 설정한다sudo apt install python3-pipsudo update-alternatives --install /usr/bin/pip..
Linux
2025. 1. 10. 13:11