Serverless Apps with FastAPI
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 705B

2 vuotta sitten
123456789101112131415161718192021222324252627282930
  1. # serverless-fastapi
  2. Serverless Apps with FastAPI
  3. ### Installing Poetry
  4. Poetry is a Python package manager that simplifies dependency management and project packaging. Follow these steps to install Poetry.
  5. ##### Step 1: Install Poetry
  6. ##### Installation (Unix/Linux/macOS)
  7. ``` curl -sSL https://install.python-poetry.org | python - ```
  8. ##### Installation (Windows PowerShell)
  9. ```(Invoke-WebRequest -Uri https://install.python-poetry.org -UseBasicParsing).Content | python -```
  10. ##### Step 2: Add poetry executable to the PATH variable
  11. ```$Env:Path += ";C:\Users\bosko.savic\AppData\Roaming\Python\Scripts"; setx PATH "$Env:Path"```
  12. ##### Step 3: Verify installation
  13. ```poetry --version```