Ubuntu16.04
-
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..