반응형 offline2 [Python]파이썬 온라인에서 작업하던 패키지 전체 오프라인 환경으로 이관하는 방법 1. 온라인 환경 수행 절차 - 패키지 설치 pip install 패키지명 - 리스트 생성 pip freeze > requirements.txt - 모듈 리스트 다운로드 pip download -r requirements.txt 2. 오프라인 환경 수행 절차 - 패키지 파일 및 리스트 이관 - 오프라인 환경 패키지 일괄 설치 python -m pip install --no-index --find-links="./" -r requirements.txt - 오프라인 환경 패키지 개별 설치 python -m pip install --no-index --find-links="./" 패키지명.whl 3. 패키지 설치 python -m pip install --no-index --find-links="./" -r .. 2023. 2. 25. Postgresql Offline Linux(CentOS7) 환경 설치 1. 설치 파일 다운로드 postgresql13 - PostgreSQL client programs and libraries postgresql13-contrib - Contributed source and binaries distributed with PostgreSQL postgresql13-libs - The shared libraries required for any PostgreSQL clients postgresql13-server - The programs needed to create and run a PostgreSQL server RepoView: PostgreSQL PGDG 13 Updates RPMs https://yum.postgresql.org/13/redhat/rhel-7-x8.. 2023. 2. 23. 이전 1 다음 반응형