본문 바로가기

컴퓨터공부

[우분투(Ubuntu)] - vim editor 기본 사용법 vim editor로 파일을 열려면, 우분투 쉘에서 'vim 파일 이름' 명령어를 입력한다. (새 파일도 만들 수 있다.) 파일을 열면, 기본적으로 명령 모드로 진입한다. 내용을 편집하고 싶다면, 'i' 또는 'a'를 눌러 편집 모드로 진입할 수 있다. 다시 명령 모드로 진입하고 싶다면, 'ESC'버튼을 누르면 된다. 명령 모드에서, 편집기 종료는 ':! q'(저장 안 됨), 저장 후 종료는 ':wq' 고급 명령어 모음 https://vim.rtorr.com/ 더보기
[파이썬(Python)] - dlib 설치 저번에 anaconda를 이용해 가상 환경을 구성했다. 얼굴 인식을 위해 dlib를 이용해야 하는데, 설치가 조금 복잡했다. dlib 홈페이지의 방법으로는 다음과 같이 설치할 수 있다고 한다. pip install dlib --verbose 또는 python setup.py install 그러나 이 작업을 수행하려면 먼저 cmake 프로그램을 설치해야 한다. https://cmake.org/download/ Download | CMake Current development distribution Each night binaries are created as part of the testing process. Other than passing all of the tests in CMake, this ver.. 더보기
[파이썬(Python)] - 아나콘다(Anaconda) - 시작하기 Conda 명령은 1. 새로운 conda 환경을 만든다. 2. 기존 conda 환경에 패키지를 설치&업데이트한다. 약어가 있다. 명령 옵션중 --name은 -n과 동일, --envs는 -e와 동일 (전체 사용법은 사이트 참조) conda 시작하기 Anaconda Prompt를 실행한다. 다음을 입력하여 conda가 시스템에 설치되었는지 확인한다. 설치 한 버전 번호가 표시될 것이다. conda --version 다음을 입력하여 conda를 업데이트 한다. 버전을 비교 후 설치가능한 항목을 표시할 것이다. y또는n 입력하여 선택한다. conda update conda 새 환경 만들기 다음을 입력하여 환경 이름을 지정하고 새 환경을 만든다. 원하는 파이썬 버전을 지정할 수도 있다. conda create -.. 더보기
[파이썬(Python)] - 아나콘다(Anaconda) 설치와 둘러보기 아나콘다란? 다양한 가상 환경 구축을 도와주는 소프트웨어다. 패키지 관리에 용이하다고 한다. https://www.anaconda.com/products/individual Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 설치 후 https://docs.anaconda.com/ Anaconda Documentation — Anaconda documentation Anaconda Individual Edition Anaconda I.. 더보기
[가상화 프로그램] 버추얼박스(VirtualBox) 설치 버추얼 박스란? 오픈 소스 소프트웨어로 무료로 제공되는 x86 및 AMD64 / Intel64 가상화 프로그램이다. 나의 경우 관공서 보안프로그램 설치를 따로 하고 싶어 설치했다. 다운로드 https://www.virtualbox.org/wiki/Downloads Downloads – Oracle VM VirtualBox Download VirtualBox Here you will find links to VirtualBox binaries and its source code. VirtualBox binaries By downloading, you agree to the terms and conditions of the respective license. If you're looking for the l.. 더보기