일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 코로나바이러스
- 봉준호감독통역
- parasite
- 우한
- red hearse
- wuhan
- 전염병
- Bolton
- 웨일즈
- 우한 코로나
- 최성재
- 치앙마이
- 우한코로나바이러스
- cnn
- 우한코로나
- 신종코로나
- 미중
- 필리핀사망
- 조현병
- 창궐
- 정은경 본부장님
- 코로나19
- 확진자수
- everybody wants you
- 어서와한국은처음이지
- 코로나
- 진짜영웅
- sharonchoi
- 봉준호감독통역사
- 중국외교부
- Today
- Total
오지's blog
makemigrations시 에러 발생 class Delivery():을 아래와 같이 수정후 해결 class Delivery(models.Model):
django에서 코딩중 다음과 같은 에러가 발생하였다.. OSError: [WinError 123] 파일 이름, 디렉터리 이름 또는 볼륨 레이블 구문이 잘못되었습니다: '' 인터넷 검색을 해도 import를 하면된다고 하는데 아무리 찾아도 import를 안한곳이 없다..... 문제는 무엇인가.. 그위를 보니 ModuleNotFoundError: No module named 'userstestapp' 이상하다 users와 testapp를 만든적이 잇어도 'userstestapp' 를 만든적이 없다..... 머지.......... 너무 간단하지만 하루가 꼬박 걸렸다. 물론 하루종일 생각한것은 아니고 하룻밤을 자고 잠시 딴생각을 하고 난뒤 보인것은 INSTALLED_APPS = [ 'django.contrib..
import sys print(sys.version) 혹은 from sys import version print(version)
https://medium.com/@hbayraktar/how-to-setup-lets-encrypt-ssl-for-apache-on-ubuntu-18-04-cfa97a83bc08 How to Setup Let’s Encrypt SSL for Apache on Ubuntu 18.04 1-Apache Vhost Configuration medium.com 2-Add Certbot PPA and Install Certbot You’ll need to add the Certbot PPA to your list of repositories. sudo apt-get install software-properties-common sudo add-apt-repository ppa:certbot/certbot sudo..
어디서 출발지 이고 어디가 목적지 인지만 정확히 하면 맥이든 ubuntu이든 어렵지 않다. 1. 맥북에서 ssh로 aws접속하는 방법 (맥 -> aws) ssh -i [pem파일 경로] [username@aws ip address] ssh -i ".../webserver.pem" ubuntu@1.1.1.1 2. scp로 맥북AWS같 파일 다운로드 업로드 방법 scp [option] 출발지(업로드하는 곳):도착지(다운로드하는 곳) 2-1. 맥북에서 aws로 파일 업로드하는 방법(AWS로 터미널 접속) (맥 -> aws) scp -i [pem파일 경로] [업로드 하는곳: 맥북] [다운로드하는 곳: AWS] 즉, scp -i [pem파일 경로] [맥 컴퓨터의 업로드할 파일 경로 및 파일 이름] [usernam..