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 ..
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
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')
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 ..