본문 바로가기

centos5

CentOS mysqlclient 설치 오류 CentOS에 mysqlclient를 "pip install mysqlclient"로 설치할 때 "subprocess-exited-with-error", " metadata-generation-failed" 에러 해결 방법입니다. 1. pip과 setuptools upgrade pip install --upgrade pip pip install --upgrade setuptools 2. python3-devel mysql-devel 설치 (root 권한으로 설치) yum install python3-devel mysql-devel 3. gcc 설치 yum install gcc 만약 gcc 설치 시 error가 나면 다음 글을 참조하십시오. 2022.06.07 - [다시 개발자] - CentOS gcc 설.. 2022. 12. 20.
centos, yum 명령어 실행시 repomd.xml Not Found error 처리 Linux에서 패키지를 설치, 삭제하기 위해 yum을 많이 사용합니다. yum에 대한 개념과 사용법은 다음 글을 참조하십시오. https://access.redhat.com/ko/solutions/82093 What is yum and how do I use it? - Red Hat Customer Portal Where can I find a guide to yum? How do I install an RPM using yum? Can I use yum to find which rpm provides a particular binary? Is there a command reference for yum? access.redhat.com 새로운 클라우드 서버에 mysql을 설치하기 위해 yum을 실행하는.. 2022. 12. 19.
centos에 mysql 설치 centos에 mysql을 설치하는 방법입니다. 1. MySQL download 주소 복사 https://www.mysql.com/products/community/ MySQL :: MySQL Community Edition MySQL Community Edition MySQL Community Edition is the freely downloadable version of the world's most popular open source database. It is available under the GPL license and is supported by a huge and active community of open source developers. The MySQL www.mysql.com My.. 2022. 8. 18.
CentOS에서 anaconda로 django 설치하기 CentOS에서 anaconda로 django를 설치하는 방법입니다. 0. 전제 조건 - anaconda 설치 만약 anaconda가 설치되어 있지 않으면 아래 글을 참조해서 설치하십시오. 2022.08.17 - [다시 개발자] - centos에 anaconda 설치 CentOS에서 anaconda 설치 CentOS에서 anaconda를 설치하는 방법입니다. 1. anaconda download 사이트에 접속합니다. https://www.anaconda.com/products/distribution#Downloads Anaconda | Anaconda Distribution Anaconda's open-source.. kka3seb.tistory.com 1. django 설치 conda install d.. 2022. 8. 18.
CentOS에서 anaconda 설치 CentOS에서 anaconda를 설치하는 방법입니다. 1. anaconda download 사이트에 접속합니다. https://www.anaconda.com/products/distribution#Downloads Anaconda | Anaconda Distribution Anaconda's open-source Distribution is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 2. download 주소를 복사합니다. 3. ssh로 접속 후 wget으로 anaconda를 download 받습니다. wget https://repo.anaconda.co.. 2022. 8. 17.