[python] how to install konlpy on ubuntu 11월 25, 2016 apt-get install g++ openjdk-7-jdk python-dev python3-dev pip install JPype1 #python2.x pip3 install JPype1 # python3.x pip3 install konlpy or pip install konlpy 자세한 내용 보기
[python] how to install python on ubuntu 11월 25, 2016 $ sudo apt-get update ; sudo apt-get upgrade $ wget https://www.python.org/ftp/python/3.5.2/Python-3.5.2.tgz #python3.5.2 다운 $ tar xvf Python-3.5.2.tgz # 압축풀기 $ cd Python-3.5.2 # 디렉토리 이동 $ ./configure # makefile 생성 $ make #python코드 컴파일 $ s udo make install # 설치 자세한 내용 보기