'ERROR' 카테고리의 글 목록 (5 Page) — 뚝딱이

ERROR

ERROR

[CUDA] cuda : Depends: cuda-11-7 (>= 11.7.1) but it is not going to be installed

https://askubuntu.com/questions/1280205/problem-while-installing-cuda-toolkit-in-ubuntu-18-04 Problem while installing cuda toolkit in ubuntu 18.04 After following all the instructions in CUDA Toolkit 11.1 Downloads, the last instruction sudo apt-get -y install cuda doesn't work for me. Terminal shows this message: The following packages have... askubuntu.com sudo apt clean sudo apt update sudo ..

ERROR

[error] NVIDIA-SMI has failed because it couldn't communicate with the NVIDIA driver. Make sure that the latest NVIDIA driver is installed and running.

nvidia GPU에 문제가 생겼기 때문에 재설치 해야함 일단 nvidia 드라이버 버전을 확인함 apt --installed list | grep nvidia-driver #결과 nvidia-driver-470/bionic-updates,bionic-security,bionic,now 470.141.03-0ubuntu0.18.04.1 amd64 [installed] Nvidia driver 제거 sudo apt remove --autoremove nvidia-* sudo apt remove --autoremove nvidia-cuda-toolkit sudo apt autoremove Nvidia driver 설치 현재 GPU 확인 lshw -C display 권장 driver설치 sudo ubuntu-..

ERROR

[Ubuntu] 아카이브를 받을 수 없습니다. 아마도 apt-get update를 실행해야 하거나 --fix-missing 옵션을 줘서 실행해야 할 것입니다.

ubuntu를 한글로 변경하면 패키지 다운로드 서버가 자동으로 변경됨(http://kr.archive.ubuntu.com/ubuntu/) 변경된 서버에 속도 이슈, 패키지 설치 에러 등이 있음 기본 패키지 서버를 변경해야함 변경하기 sudo vi /etc/apt/sources.list sources.list로 들어간다 그 후 ' : '를 입력하여 명령 모드로 변경한다 %s/kr.archive.ubuntu.com/ftp.daumkakao.com 아래이 코드 입력하면 14 substitutions on 14 lines라는 글이 뜸 ' :wq ' 를 하여 나가준다 update하고 끝낸다 sudo apt-get update; sudo apt-get upgrade -y

ERROR

[Ubuntu] song is not in the sudoers file. This incident will be reported.

사용자 계정을 만들고 이용시 생기는 문구 새로 만든 계정이 sudo 그룹의 권한이 없어서 발생하는 에러 su로 root로 와서 설정하기 nano /etc/sudoers 아래의 부분에 추가해준다

ERROR

[Seaborn] TypeError: catplot() got multiple values for argument 'data'

def function(a, b) : 가 있을 때 function (1, 3) -> O function ( b = 3, a = 1) -> O function(3, a = 1) -> X 위와 같이 순서를 지키지 않았을 때 발생하는 error 에러 코드 sns.catplot('sex', data = data, kind = 'count') 해결 x축인지 y축인지 명확하게 알려준다. ( parameter를 보고 알맞게 넣어주는 것) sns.catplot(x = 'sex', data = data, kind = 'count')

ERROR

[Android] only buildscript {} and other plugins {} script blocks are allowed before plugins {} blocks, no other statements are allowed

buildscript를 plugins 보다 앞에 써줘야함 gradle은 순서에 민감함 https://docs.gradle.org/5.4.1/userguide/plugins.html#sec:constrained_syntax Using Gradle Plugins Where «plugin id» and «plugin version» must be constant, literal, strings and the apply statement with a boolean can be used to disable the default behavior of applying the plugin immediately (e.g. you want to apply it only in subprojects). No other st ..

ERROR

[AndroidStudio] AVD Pixel_2_API_30 is already running

아래의 파일 삭제 후 다시 실행 C:/Users/Song/.android/avd/Pixel_2_API_30.avd/*.lock

파송송
'ERROR' 카테고리의 글 목록 (5 Page)