일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- tac
- Python
- 묵시적 커서
- 프로그래머스
- 코테
- terraform
- X11 forwarding
- 파이썬
- tablespace
- DDL 추출
- db
- Linux
- golang
- VMware
- Tuple
- vm tac 구성
- python3.7
- oracle
- implicit
- tas tac
- VM 설정
- X11
- CentOS
- 티베로
- OPEN CURSOR
- 코딩테스트
- 리눅스
- vm
- 암시적 커서
- tibero
Archives
- Today
- Total
목록centos7.9 (1)
줄기세포
[Python3.7] 자동설치 shell script / CentOS 7.9
Terraform으로 Python3.7 자동설치에 사용하는 shell 입니다 당연하지만 yum, wget 등 사용할 패키지는 설치되어 있어야 합니다. wget으로 내부 Repo가 아니고 python 공식 사이트(외부)에서 가져오기 때문에 internet 연결이 되어 있어야 합니다. #!/bin/bash # python3.7 yum install gcc openssl-devel bzip2-devel libffi-devel -y wget -P /root/ https://www.python.org/ftp/python/3.7.16/Python-3.7.16.tgz cd /root/ tar -xf Python-3.7.16.tgz cd /root/Python-3.7.16 ./configure --enable-opti..
Python
2023. 5. 21. 18:19