일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
Tags
- py
- level3
- SQL
- 컴퓨터비전
- Python
- 다시풀기
- 대학원일기
- LEVEL2
- SWEA
- 파이썬
- Matrix Factorization
- 자바
- androidstudio
- BFS
- level1
- java
- 프로그래머스
- 휴학
- D3
- build
- 안드로이드스튜디오
- level4
- 내휴학생활중의아주큰일
- Github
- 어렵다
- 컨트리뷰톤
- MSBuild
- WebOS
- 대학원
- git
Archives
- Today
- Total
bit가 눈 앞에서 왔다갔다
아나콘다 numpy, typing-extension 버전 충돌 본문
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~=3.7.4, but you have typing-extensions 4.0.1 which is incompatible.
* 에러 해결
pip uninstall (numpy 또는 typing-extensions)
pip install (numpy 또는 typing-extensions)==(요구버전)
반응형
Comments