ubuntu
-
Ubuntu 16.04 에 python 3.7.2 설치공부하자 2019. 12. 3. 18:52
cd /tmp wget https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tar.xz tar -xf Python-3.7.2.tar.xz cd Python-3.7.2 ./configure --prefix=/usr --enable-optimizations make -j 4 sudo make altinstall cd /usr/bin sudo ln -sf /usr/local/bin/python3.7 python3 sudo ln -sf python3 python python --version (ref) https://websiteforstudents.com/installing-the-latest-python-3-7-on-ubuntu-16-04-18-04/ Install..
-
Ubuntu 18.04 apt 의존성 문제공부하자 2019. 11. 13. 13:14
패키지 'python3-hvac'는 설치되어 있지 않아, 지우지 않았습니다. 이 상황을 바로잡으려면 'apt --fix-broken install'을 실행해야 할 수도 있습니다. 다음 패키지의 의존성이 맞지 않습니다: python3 : 미리의존: python3-minimal (= 3.6.7-1~18.04) 하지만 %s 패키지를 설치하지 않을 것입니다 의존: python3.6 (>= 3.6.7-1~) 하지만 %s 패키지를 설치하지 않을 것입니다 E: 의존성이 맞지 않습니다. 패키지 없이 'apt --fix-broken install'을 시도해 보십시오 (아니면 해결 방법을 지정하십시오). E: Could not read response to hello message from hook [ ! -f /usr/..