'프로그래밍/tips'에 해당되는 글 3건

  1. 2013.12.09 Installation of ipython on cygwin
  2. 2013.12.05 cygwin repo
  3. 2012.11.15 cygwin 한글


ipython

대략 ipython.tar.gz 파일을 다운로드 받은 후에 아래와 같이 실행

$ tar -xzf ipython.tar.gz
$ cd ipython
$ python setup.py install

상세한 내용은 http://ipython.org/ipython-doc/stable/install/install.html [2]



ipython notebook

1. Tornado

https://github.com/downloads/facebook/tornado/tornado-2.4.1.tar.gz

$ tar -xzf tornado-2.4.1.tar.gz $ cd cd tornado-2.4.1/ $ python setup.py build $ python setup.py install


2. zeroMQ

https://github.com/downloads/zeromq/pyzmq/pyzmq-2.2.0.1.tar.gz

$ tar -xzf pyzmq-2.2.0.1.tar.gz $ cd pyzmq-2.2.0.1/ $ python setup.py build $ python setup.py install


cygwin 에서 실패한다면, [4] 참조

$ wget 'http://download.zeromq.org/zeromq-2.1.7.zip'
$ unzip zeromq-2.1.7.zip
$ cd zeromq-2.1.7
$ ./configure
$ make 
    ... succeeds...
$ make install
...
$ wget --no-check-certificate 'https://github.com/downloads/zeromq/pyzmq/pyzmq-2.1.7.zip' $ python setup.py configure --zmq=/usr/local $ cd pyzmq-2.1.7 $ python setup.py build $ python setup.py install

아놔 ... 근데 왜 나는 안 되지 ㅠㅠ



references : 

[1] http://ipython.org/

[2] http://ipython.org/ipython-doc/stable/install/install.html

[3] http://ipython.org/ipython-doc/rel-1.1.0/interactive/public_server.html

[4] https://github.com/zeromq/pyzmq/issues/113

[5] http://blog.daum.net/maxmin93/13380905

:

cygwin repo

프로그래밍/tips 2013. 12. 5. 16:49 |




repo 다운로드

curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > /usr/bin/repo

chmod +x /usr/bin/repo



그냥 다운받아서 적당한 위치에 놓고 실행 모드로 설정만 해 주면 된다.


references : 

http://source.android.com/source/downloading.html


:

cygwin 한글

프로그래밍/tips 2012. 11. 15. 20:19 |

 

1. 쉘에서 한글 쓰기

~/.inputrc 파일에 다음을 추가

# Allow 8-bit input/output
set meta-flag On
set convert-meta Off
set output-meta On


 

2. ls 에서 한글 파일명 제대로 보기


2.1. ~/.bashrc 파일에 다음을 추가함

alias ls='ls -hF --color=auto --show-control-char'


2.2. ~/.bash_profile 파일에 다음을 추가

source "$HOME/.bashrc"

 

references :

http://www.redwiki.net/wiki/wiki.php/cygwin/%BC%B3%C4%A1/%C7%D1%B1%DB%BC%B3%C1%A4

: