Skip to content

typeon/hello-world

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

hello-world

poetry 사용법 익히기

# add package, remove package
$ poetry add fastapi

# pip install과 동일. package를 local에 설치하기
$ poetry install

# vscode에서 import error 발생시
$ poetry shell
$ code .
# python env를 설정할 수 있음. 그 후에는 shell exit하면 이후에도 죽 사용가능함.

pyenv를 이용하여 python 버전 변경

# 특정 python 설치하기
pyenv install 3.7.12

# 현재 디렉토리에 python version 설정하기
pyenv local 3.7.12

# python version에 맞게 package 설치하기
poetry install

poetry env 삭제하기

# env list 확인하기
poetry env list

# 특정 env 삭제하기
poetry env remove <env-name>

fastapi 실행하기

poetry run uvicorn main:app

http://localhost:8000 으로 결과 확인할 수 있음.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages