Android Studio 특정 버전 설치1. Android Studio 버전 확인아래 사이트에 접속하여 원하는 버전을 찾는다. https://plugins.jetbrains.com/docs/intellij/android-studio-releases-list.html Android Studio Releases List | IntelliJ Platform Plugin SDK plugins.jetbrains.com version 부분을 복사한다. 2. Windows 설치 방법{version} 부분에 복사한 텍스트를 붙여넣는다. 인터넷 주소창에 입력하면 다운로드가 시작된다. https://redirector.gvt1.com/edgedl/android/studio/install/{version}/android-..
JDK 설치원하는 JDK 버전 선택해서 운영체제에 맞게 설치 https://www.oracle.com/kr/java/technologies/downloads/ Download the Latest Java LTS FreeSubscribe to Java SE and get the most comprehensive Java support available, with 24/7 global access to the experts.www.oracle.com 환경변수 설정 1. [설정] -> [검색] -> [고급 시스템 설정 보기] -> [환경 변수] 클릭 2. [시스템 변수] -> JAVA_HOME이 없다면 [새로 만들기] 클릭하고, 있다면 [편집] 클릭[변수 이름] : JAVA_HOME[변수 값] : jd..
오류 발생 이유 numpy의 버전이 높아서 tensorflow에서 구현이 안됨 numpy 1.2x 버전에서 주로 발생한다고 함 오류 해결 방법 numpy의 버전을 1.19x로 낮추면 된다 1. 기존 numpy 삭제 pip uninstall numpy 2. numpy 재설치 pip install numpy=1.19.5