■pip 업그레이드
python -m pip install --upgrade pip
python3 -m pip install --upgrade pip
■설치되어 있는 패키지 목록 확인
pip list
pip freeze
pip freeze > requirements.txt
pip install -r requirements.txt
■패키지의 의존성 확인
pip install pipdeptree
pipdeptree -r -p boto3
■python offline 패키지 설치
# Online
pip install --upgrade pip
pip download -d "D:\downloads\boto3" boto3
# Offline
pip install --no-index --find-links="D:\downloads\boto3" boto3
