2024. 10. 26. 09:05
2024. 10. 16. 14:51
1. 가상환경에서 설치된 패키지 목록 출력
- pip freeze | grep -v 'pip' > requirements.txt
2. 모든 라이브러러리 삭제
- xargs pip uninstall -y < requirements.txt
3. 남은 라이브러리 확인
- pip list
2024. 10. 12. 19:13
container
container-fluid
container-sm, md, lg, xl, xxl
m : margin
p : padding
bg : background color
text : font color
grid
col-xxl-1 col-lg-2 col-md-8
col-xxl-1 col-lg-2 col-md-4
table
table-striped
table-bordered
table-hover
table-dark
table-primary
table-success
table-info
table-danger
table-active
table-sm
table-responsive
rounded
rounded-5
rounded-circle
img-thumbnail
float-start
float-end
img-fluid
btn-close
data-bs-dismiss="alert"
alert
alert-success
alert-dismissible
btn
btn-primary
btn-success
btn-outline-primary
btn-sm
disabled
d-grid
spinner-border
btn-group
btn-group-lg
btn-group-vertical
dropdown-toggle
data-bs-toggle="dropdown"
dropdown-menu
dropdown-item
list-group
list-group-item
list-group-numbered
list-group-horizontal
list-group-flush
d-flex
justify-content-between
align-items-center
rounded-pill
badge
card
card-body
card-title
card-text
card-link
card-image-top
card-img-overlay
modal
modal-dialog
modal-content
modal-header
modal-body
modal-footer
modal-dialog-scrollable
modal-dialog-centered
data-bs-toggle="modal"
data-bs-target="#modal1"
data-bs-backdrop="static"
text-start
text-center
text-end
text-wrap
text-nowrap
text-break
text-lowercase
text-uppercase
text-capitalize
fs-1
fs-2
fs-3
fs-4
fs-5
fs-6
fw-bold
fw-bolder
fw-semibold
fw-normal
fw-light
fw-lighter
fst-italic
fst-normal
lh-1
lh-sm
lh-base
lh-lg
font-monospace
text-reset
text-decoration-underline
text-decoration-line-through
text-decoration-none
2024. 10. 10. 12:39
2024. 9. 23. 19:56