일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 2003 에러
- 프로그래머스
- 뤼이드
- 코딩테스트
- 프로그래머스 여행경로
- 미국 이란 전쟁
- git password
- 스무고개 Metric
- 리멤버나우 요약
- flaks
- aws rds
- git-lfs
- 리멤버나우
- 이베이 매각
- 웹 독학
- 알고리즘
- but how?
- cs231
- Convolutional Neural Networks
- 2003 error
- flask
- 오픈소스
- 경제 요약
- C++
- 딥러닝
- 백준 2193
- 장영준
- multi-task learning
- 110 옮기기
- pytorch-tutorial
- Today
- Total
Nam's
[AWS] EC2 초기 환경 설정 본문
0. AWS EC2 .pem permision allow
chmod 400 <filename>.pem
chmod 400 <filename>.pem
1. Anaconda 설치
나는 conda 가상환경을 사용하기 때문에 먼저 conda를 설치한다.
mungto.tistory.com/326
AWS EC2(ubuntu)에서 원하는 버전 anaconda3 설치 및 셋팅하기
리눅스에서 Anaconda 설치하기 0. 원하는 버전 선정 https://repo.anaconda.com/archive/ 1. Conda 다운로드 sudo wget https://repo.anaconda.com/archive/[파일명] ex) sudo wget https://repo.anaconda.com/arc..
mungto.tistory.com
sudo wget https://repo.anaconda.com/archive/Anaconda3-2020.11-Linux-x86_64.sh
bash Anaconda3-2020.11-Linux-x86_64.sh
source ~/.bashrc
source ~/anaconda3/etc/profile.d/conda.sh
2. Git 설치
[AWS] EC2 인스턴스에서 git 설치 방법
AWS EC2에서 git 설치 AWS의 EC2 인스턴스 중 Amazon Linux 2에 git을 설치하는 방법을 알아보았습니다. Yum을 이용하면 쉽게 git 설치가 가능합니다. Yum은 Yellow dog Updater, Modified의 약자로 RPM 기반의..
gamoo12.tistory.com
#Perform a quick update on your instance:
sudo yum update -y
#Install git in your EC2 instance
sudo yum install git -y
#Check git version
git version
3. gcc 설치 (안하면 mysql 이 안될 수도 있다.)
stackoverflow.com/questions/48175057/pip-install-mysqlclient-on-amazon-linux
pip install mysqlclient on amazon linux
sudo pip install mysqlclient is failing with the famous mysql_config path error The database is a remote mysql RDS. I tried to install a local mysql using yum (not that i need it) but that didn't h...
stackoverflow.com
# Make sure you have compiler collection
sudo yum install gcc
# Make sure mysql is configured for development purposes
sudo yum install -y mysql-devel
# Try to reinstall
pip install mysqlclient==1.3.12
'개발 > Back-end' 카테고리의 다른 글
AWS EC2, Lightsail에 git-lfs 설치하기 (0) | 2021.07.01 |
---|---|
[Flask] Local 서버 AWS RDS 연결 에러: (2003, "Can't connect to MySQL server on 'db-name') (1) | 2021.05.02 |
Flask Study 04 - SQLAlchemy filter, filter_by (or, !=, like) (0) | 2021.02.17 |
Flask Study 03 - Marshmallow (0) | 2021.01.26 |
Flask Study 02 - DB Migration (0) | 2021.01.26 |