일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- py
- Matrix Factorization
- 컴퓨터비전
- Python
- BFS
- 프로그래머스
- Github
- 컨트리뷰톤
- LEVEL2
- SWEA
- build
- level1
- 안드로이드스튜디오
- MSBuild
- level4
- 파이썬
- D3
- 대학원일기
- WebOS
- 휴학
- androidstudio
- 내휴학생활중의아주큰일
- 자바
- 다시풀기
- SQL
- git
- 대학원
- level3
- java
- 어렵다
- Today
- Total
목록에러 (2)
bit가 눈 앞에서 왔다갔다
pip install -r requirements.txt를 했는데 에러가 떳다. 에서 버전충돌이 있는 거 같은데 에러문구가 너무 친절해서 고맙다. ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. tensorflow-gpu 2.6.1 requires numpy~=1.19.2, but you have numpy 1.22.2 which is incompatible. tensorflow-gpu 2.6.1 requires typing-extensions..
명품 자바 프로그래밍 9장 7번 package chapter9; import java.awt.*; import javax.swing.*; public class layout extends JFrame{ public layout() { setTitle("계산기 프레임"); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Container con = getContentPane(); JPanel pn = new JPanel(); JPanel pc = new JPanel(); JPanel ps = new JPanel(); con.add(pn, BorderLayout.NORTH); con.add(pc); con.add(ps, BorderLayout.SOUTH); pc.setL..