분류 전체보기621 우분투에 도커 설치하기 환경 Ubuntu 18.04 LTS sudo apt update sudo apt install apt-transport-https ca-certificates curl software-properties-common curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu bionic stable" sudo apt update sudo apt install docker-ce 2022. 1. 11. 우분투 의존성 문제 우분투 리눅스에서 패키지를 설치할 때 다음과 같은 의존성(dependency) 에러가 나는 경우 필요한 의존 패키지들을 자동으로 설치해줍니다. sudo apt-get -f install -f 는 --fix-broken 옵션으로, 의존성 관련 문제를 해결할 때 사용할 수 있습니다. 2022. 1. 10. 우분투 환경에서 JAVA_HOME 설정 우분투 환경에서 자바를 사용하기 위해 JAVA_HOME 을 설정하는 법을 설명하고자 한다. open jdk 설치 sudo apt-get install openjdk-8-jdk 자바 위치 확인 which java which javac profile 파일열기 sudo nano /etc/profile profile 맨 하단에 java home path 설정 export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64 환경설정 소스 적용 source /etc/profile 2022. 1. 9. 우분투 버전 확인하기 아래 명령어로 우분투 버전 확인이 가능하다. cat /etc/issue hostnamectl 2022. 1. 8. Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager python requirement 를 설치하던 중에 생기는 오류로 root 계정말고 다른계정에서 사용한다 Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. pip를 '루트' 사용자로 실행하면 권한이 손상되고 시스템 패키지 관리자와 동작이 충돌할 수 있습니다. 2022. 1. 7. pip install *.whl is not a supported wheel on this platform whl 파일을 설치하려는데 오류가 나면서 설치가 되지 않았다. 다음 명령어를 사용해서 pip 이 지원되는 버전을 확인하면된다. import wheel.pep425tags print(wheel.pep425tags.get_supported()) 위에서 해당되는 버전을 확인 후 아래에서 파일을 다운받아 사용하면 된다. https://www.lfd.uci.edu/~gohlke/pythonlibs/#jpype 2022. 1. 7. 이전 1 ··· 42 43 44 45 46 47 48 ··· 104 다음