분류 전체보기104 오프라인 환경에서 Python 패키지 설치하기 온라인 환경에서 패키지 다운로드pip download 명령을 이용해서 아래와 같이 원하는 패키지를 다운로드 한다.(폐쇄망 환경에서 외부로 443 통신이 불가한 경우 --trusted-host 를 추가 하면 된다.)pip3 download -d ./package-requests/ requests --trusted-host pypi.org --trusted-host files.pythonhosted.org 오프라인 환경에서 패키지 설치커맨드 라인 환경pip3 install --no-index --find-links=./package-requests/ requests IDE 환경파이참 (PyCharm)# pip.ini (Windows)[global]trusted-host = pypi.org .. 2024. 7. 13. 오프라인 환경에서 PIP 설치하기 PIP 패키지 구하기https://pypi.org/위 사이트에 접속 하여 pip whl 파일 다운로드 (pip-24.1.2-py3-none-any.whl) 폐쇄망 서버에서 아래와 같이 설치python3 pip-24.1.2-py3-none-any.whl/pip --no-index pip-24.1.2-py3-none-any.whl 2024. 7. 13. 쿠버네티스 환경 구성하기 사전 준비Rocky Linux 9k8s-master (172.16.100.100)k8s-worker1 (172.16.100.101)k8s-worker2 (172.16.100.102)k8s-worker3 (172.16.100.103) containerd 설치방법 1Docker Repository 에서 containerd 를 설치 한다.# Docker Repository 설정dnf -y install dnf-plugins-corednf config-manager --add-repo https://download.docker.com/linux/rhel/docker-ce.repo# containerd 설치dnf install -y containerd.io# containerd 설정 파일 생성cd /etc/con.. 2023. 2. 19. Spring 이란? Spring 공식 웹 사이트https://spring.io/ Spring | HomeCloud Your code, any cloud—we’ve got you covered. Connect and scale your services, whatever your platform.spring.io Spring 이란?Spring은 아파치 라이선스 2.0을 따르는 Java 기반의 오픈 소스 애플리케이션 프레임워크 이다. Spring Framework 특징Spring의 핵심인 Spring Framework의 특징은 아래와 같다.POJO (Plain Old Java Object) 방식IoC (Inversion of Control)DI (Dependency Injection)AOP (Aspect Oriented Prog.. 2023. 2. 2. 이전 1 ··· 3 4 5 6 7 8 9 ··· 26 다음