AWS(14)
-
웹개발 종합반 5주차
스파르타 코딩클럽 웹개발 종합반 수업내용을 정리한 것입니다. 이전 수업들의 복습이 메인인 수업들이었습니다. 버킷리스트 - 가상 환경 및 패키지 설치 python3 -m venv venv pip install flask pymongo dnspython 코드 나의 버킷리스트 기록하기 ✅ 호주에서 스카이다이빙 하기 from flask import Flask, render_template, request, jsonify app = Flask(__name__) from pymongo import MongoClient import certifi ca = certifi.where() client = MongoClient('mongodb+srv://이름:비밀번호@cluster0.2xxwxhc.mongodb.net/?r..
2023.04.09 -
[Mac OS] AWS 배포 에러 Command errored out with exit status 1:
아마존 배포 진행중 오류발생 아래코드 실행후 에러가 발생 했다. pip install awsebcli 아래와 같은 에러발생 ERROR: Could not build wheels for bcrypt which use PEP 517 and cannot be installed directly WARNING: You are using pip version 19.2.3, however version 23.0.1 is available. You should consider upgrading via the 'pip install --upgrade pip' command. pip 를 업그레이드 해달라는 경고가 떴다. pip install -U pip setuptools 위 코드 실행후 해결 링크 : https://st..
2023.04.09