요즘 핫한 AI기술을 사용하기위해 파이썬이 필수가 되어버렸다.
따라서 오늘은 회사에 있는 centOS 아파치서버에 파이썬을 설치하도록 하겠다.
나의 잡동사니같은 실험과 코딩놀이를 위해 기꺼이 고성능 깡통서버를 내어준 회사에 다시한번 감사를 드린다 ㅋㅋㅋ
아아,,, 근데 centOS 7.9버전에서는 python 3.6.8이상이 설치되지 않는다.
그러니 리눅스 공홈으로 가보자.
리눅스 공홈에 따르면 아래와 같은 작업을 통해 설치할 수 있다.
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Step 1: Update CentOS ( CentOS업데이트)
The first step, as always, is to update your system with the following command:
yum update
업데이트 실행
Step 2: Install necessary packages
Next, we need to install some packages:
yum install openssl-devel bzip2-devel libffi-devel
yum groupinstall "Development Tools"
필요한 개발자도구를 설치
Step 3: Download Python
First, get the download link for the version of Python that you plan on installing from this page. In this tutorial, we’ll be using Python 3.10.2.
Download the file with the command below:
wget https://www.python.org/ftp/python/3.10.2/Python-3.10.2.tgz
wget으로 원하는 python 버전을 선택하여 다운로드
** 이 단계에서 wget이 없다면 wget을 먼저 설치하길 바란다.
yum install wget
And extract the archive with:
tar -xzf Python-3.10.2.tgz
압축풀기
Step 4: Install Python 3.10
To install the Python version you just downloaded, cd into the directory:
알맞은 디렉토리로 찾아 들어가서 install 하기
cd Python-3.10.2
Then, run the following command:
./configure --enable-optimizations
And finally, compile Python (without replacing the default version):
make altinstall
This process might take a while. After it’s done, you can verify if you installed Python 3.10.2 with the following command:
python3.10 -V
Which should return the exact version of Python (3.10.x)
이제 파이썬이 설치된 것을 확인하도록 한다.
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
openAI등 여러가지 패키지에 대해서 설치하고 운용하는 부분을 하고 싶은 만큼 해보고
방법과 결과물들을 공유할 예정이다 기대해도 좋다!
'Work' 카테고리의 다른 글
스마트 스토어의 시작과 각종 팁 정리 (0) | 2023.04.04 |
---|---|
듀얼쇼크4 드라이버 오류 해결방법(유선패드) (0) | 2023.04.04 |
마이크로서비스 아키텍쳐 (MSA) 에 관한 내용 (0) | 2023.04.04 |
웹프로그래밍용 APM 설치 순서 (0) | 2023.04.04 |
(FLUTTER) Ai 반실사 앱 : Ai_Pict 출시 (0) | 2023.04.04 |