일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- JS
- Atlassian
- 자바
- script
- 리눅스
- ubuntu
- node
- python
- javascript
- install
- PostgreSQL
- hamonikr
- 윈도우
- 설정
- 자바스크립트
- Linux
- postgres
- Windows
- 아틀라시안
- 노드
- DATABASE
- 하모니카
- 우분투
- java
- 데이터베이스
- 파이썬
- 설치
- 스크립트
- DB
- 3.0
- Today
- Total
목록설치 (18)
LukeHan 의 잡다한 기술 블로그
개발환경 구축을 위해 하모니카 SUN 버전에서 Python3.9 버전 설치가 필요했다. 하모니카 SUN 버전은 ubuntu 18.04 를 베이스로 제작된 OS 이니 ubuntu 18.04 에서 Python3.9 를 설치하는 경우 해당 문서를 참고하면 된다. sudo add-apt-repository ppa:umang/indicator-stickynotes 위와 같이 PPA 를 추가한다. 만약 gpg 에러가 발생하는 경우 PPA-추가-시-GPG-에러-발생하는-경우 의 문서를 참고하여 수정 적용 한다. sudo apt-get update PPA 가 추가 되었다면 위와 같이 입력하여 반영한다. sudo apt-get install indicator-stickynotes 업데이트 하였다면 위와 같이 입력하여 설..
개발환경 구축을 위해 하모니카 SUN 버전에서 Python3.9 버전 설치가 필요했다. 하모니카 SUN 버전은 ubuntu 18.04 를 베이스로 제작된 OS 이니 ubuntu 18.04 에서 Python3.9 를 설치하는 경우 해당 문서를 참고하면 된다. sudo add-apt-repository ppa:deadsnakes/ppa Terminal 을 연 뒤 (Ctrl + Alt + T) command line 에서 위와 같이 명령어를 입력한다. 명령어를 입력하면 아래와 같이 출력될 것이다. /usr/lib/python3/dist-packages/requests/__init__.py:80: RequestsDependencyWarning: urllib3 (1.26.3) or chardet (3.0.4) d..
pip 명령어를 통해 Python Module 을 다운로드 설치 할 수 없어 다운로드 받아 설치해야하는 경우 아래와 같이 진행 한다. Download : PyPI · The Python Package Index whl 파일을 설치하는 경우 1. 설치할 패키지의 whl 파일을 다운로드 받는다. 2. cmd 창에서 해당 경로로 이동한다. 3. pip install file_name.whl 을 입력하여 설치를 실행한다. pip install chromedriver_autoinstaller-0.3.1-py3-none-any.whl tar.gz 파일을 설치하는 경우 1. 설치할 패키지의 tar.gz 파일을 다운로드 받는다. 2. 해당 파일의 압축을 푼 뒤 cmd 창에서 해당 경로로 이동한다. 3. python s..
참고 : wiki.winehq.org/Ubuntu sudo dpkg --add-architecture i386 wget -nc https://dl.winehq.org/wine-builds/winehq.key sudo apt-key add winehq.key sudo apt-add-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ xenial main' sudo apt install --install-recommends winehq-stable
저장소 수정 # 저장소 정보 변경 sudo vi /etc/apt/sources.list.d/official-package-repositories.list # 기존 deb [arch=amd64] http://ftp.kaist.ac.kr/linuxmint tara main upstream import backport deb [arch=amd64] http://mirror.kakao.com/ubuntu bionic main restricted universe multiverse deb [arch=amd64] http://mirror.kakao.com/ubuntu bionic-updates main restricted universe multiverse deb [arch=amd64] http://mirror.k..
확인1 postgresql 설치 여부를 확인합니다 aptitude show postgresql | grep State State : not installed 설치 apt-get install postgresql 확인2 dpkg -l | grep postgres cat /etc/passwd | grep postgres /etc/init.d/postgresql status netstat -tnlp | grep postgres 패스워드 설정 sudo -u postgres psql template1 ALTER USER postgres with encrypted password 'p@ssw0rd';