안녕하세요
우분투에서 파이썬을 해볼려고 합니다.
환경설정 후에 책을 따라서 이것 저것 실습하다가 다시 책을 보던 중에 책에있는 환경설정관련 출력과 제 컴에서 실제로 출력된 결과가 달라서
질문드립니다.
vi편집기로 .profile에
export PATH=/usr/local/bin:$PATH
export PYTHONPATH=/home/mydir
이렇게 추가를 시켰습니다.
.pythonrc 를 vi편집기로
import os
import sys
print 'startup file .pythonrc executed'
이렇게 입력하고 저장
.profile에서
export PYTHONSTARTUP=$HOME/ .pythonrc
이렇게 저장을 했는데요
책에서는
$ python
python 2.2 (#1, Dec 30 2001, 23:47:49)
[GCC 2.95.2 19991024 (release)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
startup file .pythonrc executed
>>> os.system('ls')