Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- sql
- PYTHON
- DB 스케쥴러
- anaconda
- pyqt
- 파이썬
- 드라이브 연결
- sqldeveloper
- eclipse
- error
- Git
- javascript
- JSP
- Oracle
- spring
- pymssql
- form태그
- androidstudio
- ibatis
- select문
- sqlMapClient
- pagination
- java
- sqlMapConfig
- directivesTag
- form
- pl/sql
- 비교표현식
- mybatis
- fastapi
Archives
- Today
- Total
목록fastapi (1)
기록하는 코더

FastAPI를 사용하기 위해서 1. cmd 창에 pip install fastapi pip install uvicorn 를 입력해 라이브러리를 설치해준다. 2. Path 환경 변수에 uvicorn 경로를 추가해준다. uvicorn.exe 설치되어있는 경로 c드라이브 > 사용자 > AppData\Roaming\Python\Python39\Scripts 경로에 설치되어있다. 내 컴퓨터에 설치되어있던 경로 C:\Users\PC-13\AppData\Roaming\Python\Python39\Scripts 예제 - 01 main.py from fastapi import FastAPI,Form ,HtmlResponse, Request import uvicorn from fastapi.staticfiles impo..
Python
2023. 1. 5. 15:16