목록install (15)
IT Log

WARNING: The script flask is installed in '경로' which is not on PATH. Consider adding this directory to PATH or, if you prefer to suppress this warning, use --no-warn-script-location. 해결 방법 # 경고문에 나오는 경로를 PATH에 추가 export PATH=$PATH:경로 # Example export PATH=$PATH:/usr/local

System requirements Requirement Minimum Recommended RAM 4GB 8GB Disk 공간 2.5GB, cache를 위한 1GB 최소 5GB의 여유 공간이 있는 SSD 모니터 해상도 1024x768 1920x1080 운영체제 Microsoft Windows 8 이상 macOS 10.13 이상 Gnome, KDE 또는 Unity DE를 지원하는 모든 Linux 배포판 최신 64 비트 버전의 Windows, macOS 또는 Linux (예 : Debian, Ubuntu 또는 RHEL) 1. PyCharm Download PyCharm Download : https://www.jetbrains.com/ko-kr/pycharm/download/#section=windows ..

Python은 Python 홈페이지 : https://www.python.org/downloads/ Anaconda 홈페이지 : https://www.anaconda.com/products/individual 위 2곳 중 한 곳을 선택하여 Download 할 수 있습니다. 두 방법의 차이는 1번의 경우 pip 패키지만 가진 상태로 시작하하게 됩니다. pip이외의 패키지 사용이 필요한 경우에는 추가적으로 설치가 필요합니다. 2번의 경우에는 pip이외의 numpy, pandas 등 여러가지 패키지와 라이브러리를 가진 상태로 시작하게 됩니다. 따라서 본인이 진행하고자 하는 목적에 맞는 설치 방법을 선택하시면 될 것 같습니다. !둘 중 하나만 설치하세요 1. Python Download URL : https:/..

원인 : 해당 모듈이 없거나 모듈 입력시 오타 발생 해결 방법 : 해당 패키지가 설치되어 있지 않으므로, 설치해주면 해결됩니다. Python3 pip3 install '패키지명' # Example pip3 install numpy Python2 pip install '패키지명' # Example pip install numpy ※ 위 명령 실행 후 아래와 같은 ERROR가 발생했다면, 2가지 경우가 있습니다. ERROR: Could not find a version that satisfies the requirement 패키지명 ERROR: No matching distribution found for 패키지명 패키지명 오타 → 오타 수정 후 재시도 설치 시 입력하는 이름이 약간 다름 2번의 경우 Pyp..
1. Repository 다운 및 설치 curl -o /etc/yum.repos.d/msprod.repo https://packages.microsoft.com/config/rhel/7/prod.repo yum install -y mssql-tools unixODBC-devel ※ 이전버전의 mssql-tools가 설치되어 있는 경우 yum remove unixODBC-utf16 unixODBC-utf16-devel 2. 환경 변수 추가 및 적용 echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bash_profile echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bashrc source ~/.bashrc 참..
1. Repository 다운 및 설치 curl -o /etc/yum.repos.d/mssql-server.repo https://packages.microsoft.com/config/rhel/7/mssql-server-2019.repo yum install -y mssql-server 2. mssql-conf setup /opt/mssql/bin/mssql-conf setup # edition 선택 1~8번 중 선택 # 비밀번호 입력 및 확인 3. mssql 설치 확인 및 시작 # 상태 확인 systemctl status mssql-server # 시작 systemctl start mssql-server # 재부팅시 자동 시작 systemctl enable mssql-server 4. 방화벽 설정 (O..

Source 설치를 해야하는 경우 Ubuntu 18.04 64-bit 또는 Ubuntu 20.04 64-bit가 아닌 경우 Ubuntu 가 아닌 다른 OS인 경우 ( CentOS, Debian 등 ) ※ Ubuntu 18.04 64-bit 또는 Ubuntu 20.04 64-bit 인 경우 패키지 설치를 권장 참조 URL : Installing CKAN from package : docs.ckan.org/en/latest/maintaining/installing/install-from-package.html [CKAN] Package Install : newly0513.tistory.com/202 CKAN 2.9 on CentOS 7 : github.com/ckan/ckan/wiki/How-to-Insta..
전제 조건 Python : 3.6, 3.7, 3.8 Database : PostgreSQL : 9.6, 10, 11, 12, 13 MySQL : 5.7, 8 SQLite : 3.15.0 이상 Kubernertes : 1.16, 1.17.5, 1.18.6 - Kubernertes 설치 URL : newly0513.tistory.com/191 ※ MySQL 5.x 버전은 여러 스케줄러를 실행할 수 없거나 제한적임 (MariaDB 권장하지 않음) 또한, SQLite는 주로 테스트에 사용됨 작성 글 구성환경 OS : Ubuntu 20.04 Python : 3.8.5 Database : PostgreSQL 12 Kubernertes : 1.20.5 1. Airflow HOME 경로 설정 export AIRFLOW..