목록2022/09/03 (2)
전산쟁이의 기억노트
node,js 설치하기 $> wget http://nodejs.org/dist/v0.10.24/node-v0.10.24.tar.gz $> tar -zxvf node-v0.10.24.tar.gz $> cd node-v0.10.24/ $> ./configure $> make;make install node.js를 이용해 forever 모듈설치하기 $> npm config set strict-ssl false $> cd /home/test $> npm install forever -g 출처 - http://igoni.kr/books/linux/page/centos-node Centos에서 node설치 | igoni.kr node,js 설치하기$> wget http://nodejs.org/dist/v0.10.2..
pip에서 docker-compose 설치할떄 아래 메시지 띄우면서 설치가 안될 경우.. python-requests패키지가 yum으로 설치되어 있어서 충돌 발생. $> pip install docker-compose ... ... ERROR: Cannot uninstall 'requests'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall. 그때는 설치되어 있는 패키지는 추가 설치 없이 구성하도록 설치 $> pip install docker-compose --ignore-installed D..