목록개발 (4)
VIDEOCUBE

회사의 권유로 JetBrains 의 Intellij 개발툴을 사용하게 되었습니다. https://www.jetbrains.com/ JetBrains: Essential tools for software developers and teamsJetBrains is a cutting-edge software vendor specializing in the creation of intelligent development tools, including IntelliJ IDEA – the leading Java IDE, and the Kotlin programming language.www.jetbrains.com설치를 하고 보니, 그동안에 사용하던 eclipse 와는 많은 것이 낯설기만 했다.그동안 무료에 익숙해..
CentOS 6.3 으로 Python3 설치 1. CentOS 6.3 기본 설치 버전 - version 2.6.6 root@linux-03:/root> pythonPython 2.6.6 (r266:84292, Jun 18 2012, 14:18:47) [GCC 4.4.6 20110731 (Red Hat 4.4.6-3)] on linux2Type "help", "copyright", "credits" or "license" for more information. >>> exit() root@linux-03:/root> yum update pythonDependencies Resolved ====================================================================..
Cython 은 CPython 확장 모듈을 생성하고 이를 이용하여 외부 함수 인터페이스와 실행 속도 향상과 외부 라이브러리의 연동을 보다 향상 시킬 수 있도록 고안된 컴파일 언어이다 Cython 은 pyx 확장명을 사용하고, 컴파일 과정을 통하여 파이썬에서 import 형태로 사용될 수 있다. 컴파일은 다음 setup.py 를 이용하여 컴파일 할 수 있다 mathx.pyx 만들기def inverse(float x):cdef float yy = 1.0 / xreturn y setup.py 만들기#!/usr/bin/env python from distutils.core import setupfrom Cython.Build import cythonizesetup(name = 'Cython Library', e..
python 에서 쉽게 패키지를 설치할 수 있도록 도움을 주는 패키지 매니져를 설치해 보자현재 CentOS 6.3 에서는 yum 으로 설치를 진행 할 수 없다. root@linux-01:/data/source> yum install python-pipLoaded plugins: fastestmirrorLoading mirror speeds from cached hostfile * base: mirror.fairway.ne.jp * extras: mirror.fairway.ne.jp * updates: www.ftp.ne.jpTrying other mirror.Setting up Install ProcessNo package python-pip available.Error: Nothing to do EPE..