zeroday0619/COVID-19API

Installing requirements gives error

Closed this issue · 3 comments

python -m pip install -r requirements.txt을 실행하였을 때

Could not find a version that satisfies the requirement fastapi[all] (from -r requirements.txt (line 1)) (from versions: ) No matching distribution found for fastapi[all] (from -r requirments.txt (line 1))가 출력됩니다.

파이썬 버젼: 3.8
OS: Ubuntu 18.04

pip install fastapi 역시 안되네요.
이건 fastapi만의 문제인 것 같습니다.

@superjoy0502
python3 -m pip install fastapi[all]

Python2 is not supported and python commands on Ubuntu 18.04 LTS run python2

image

Solved.
by executing the command python3 -m pip install fastapi[all] it returned "No module named pip".
In order to solve this, I executed the command sudo apt install python3-pip, which installed pip for my computer, which was brand new.
Thanks for the help!