소스 검색

Update README.md

add poetry installation steps
master
Bosko Savic 2 년 전
부모
커밋
402a592a25
1개의 변경된 파일27개의 추가작업 그리고 0개의 파일을 삭제
  1. 27
    0
      README.md

+ 27
- 0
README.md 파일 보기

@@ -1,3 +1,30 @@
# serverless-fastapi

Serverless Apps with FastAPI


### Installing Poetry

Poetry is a Python package manager that simplifies dependency management and project packaging. Follow these steps to install Poetry.

##### Step 1: Install Poetry

##### Installation (Unix/Linux/macOS)

``` curl -sSL https://install.python-poetry.org | python - ```


##### Installation (Windows PowerShell)

```(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python -```

##### Step 2: Add poetry executable to the PATH variable

```$Env:Path += ";C:\Users\bosko.savic\AppData\Roaming\Python\Scripts"; setx PATH "$Env:Path"```

##### Step 3: Verify installation

```poetry --version```




Loading…
취소
저장