"Easy install"의 두 판 사이의 차이

 
(사용자 2명의 중간 판 10개는 보이지 않습니다)
2번째 줄: 2번째 줄:
;EasyInstall, easy_install
;EasyInstall, easy_install
;이지인스톨
;이지인스톨
*Python용 패키지 매니저
* Python용 패키지 매니저
* 패키지명으로 설치하거나 tar.gz, egg 파일을 설치할 수 있다.
* 대개의 경우, 이것보다 [[pip]] 사용이 권장된다.
 
==명령어 예시==
* 패키지명
<source lang='bash'>
easy_install 패키지명
</source>
* 웹에서 다운로드하여 설치
<source lang='bash'>
easy_install http://example.com/경/로/패키지명-1.2.3.tgz
</source>
* 로컬 파일시스템에서 설치
<source lang='bash'>
easy_install /home/testuser/패키지명-1.2.3-py2.7.egg
</source>
* 소스코드 압축 풀린 곳에서 설치
<source lang='bash'>
easy_install .
</source>
* 제거(uninstall)
<source lang='bash'>
easy_install -m 패키지명
</source>


==같이 보기==
==같이 보기==
*[[Python 패키지 인덱스]]
*[[PyPI]] (Python 패키지 인덱스)
*[[Python 패키지 매니저]]
*[[Python 패키지 매니저]]
*[[RubyGems]]
*[[RubyGems]]
*[[setuptools]]
*[[setuptools]]
*[[pip]]
*[[pip]]
*[[리눅스 Flask 설치]]
*[[Python 설치 모듈 목록 확인]]
*[[파이썬 pip, easy_install 정상화]]


==참고 자료==
==참고==
*https://en.wikipedia.org/wiki/EasyInstall
*https://en.wikipedia.org/wiki/EasyInstall
*http://peak.telecommunity.com/DevCenter/EasyInstall
*http://peak.telecommunity.com/DevCenter/EasyInstall
* https://pythonhosted.org/setuptools/easy_install.html


[[분류: easy_install]]
[[분류: easy_install]]

2020년 3월 2일 (월) 22:25 기준 최신판

1 개요[ | ]

EasyInstall, easy_install
이지인스톨
  • Python용 패키지 매니저
  • 패키지명으로 설치하거나 tar.gz, egg 파일을 설치할 수 있다.
  • 대개의 경우, 이것보다 pip 사용이 권장된다.

2 명령어 예시[ | ]

  • 패키지명
easy_install 패키지명
  • 웹에서 다운로드하여 설치
easy_install http://example.com/경/로/패키지명-1.2.3.tgz
  • 로컬 파일시스템에서 설치
easy_install /home/testuser/패키지명-1.2.3-py2.7.egg
  • 소스코드 압축 풀린 곳에서 설치
easy_install .
  • 제거(uninstall)
easy_install -m 패키지명

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}