목록분류 전체보기 (90)
세모튜브
설치 버젼 => 버젼확인 : $ cat /etc/*release* Ubuntu Groovy 20.10 Ubuntu Focal 20.04 (LTS) Ubuntu Bionic 18.04 (LTS) Ubuntu Xenial 16.04 (LTS) 이전 버전 삭제 $ sudo apt-get remove docker docker-engine docker.io containerd runc repository 설치 $ sudo apt update $ sudo apt -y install apt-transport-https ca-certificates curl gnupg-agent software-properties-common Docker의 공식 GPG 키를 추가 $ curl -fsSL https://download.d..
터미널을 열고 openssh-server를 설치합니다. $ sudo apt update $ sudo apt install openssh-server -y openssh-server 서비스 활성화 확인 $ sudo systemctl status ssh openssh-server 포트 열기 $ sudo ufw allow ssh 재부팅 $ sudo reboot . . ============================ 원격에서 접속 테스트 $ ssh username@ip_address ============================
우분투 공식홈페이지 : ubuntu.com/ Enterprise Open Source and Linux | Ubuntu Ubuntu is the modern, open source operating system on Linux for the enterprise server, desktop, cloud, and IoT. ubuntu.com 우분투 다운로드 : ubuntu.com/download/desktop Download Ubuntu Desktop | Download | Ubuntu Ubuntu is an open source software operating system that runs from the desktop, to the cloud, to all your internet connected t..
jupyter 공식홈페이지 : jupyter.org/ Project Jupyter The Jupyter Notebook is a web-based interactive computing platform. The notebook combines live code, equations, narrative text, visualizations, interactive dashboards and other media. jupyter.org 가상환경 생성 $ conda info --envs => 리스트 확인 $ conda create --n env_jupyter python=3.7 가상환경 활성화 $ source activate env_jupyter jupyter notebook 설치 (env_jupyter) ide..
위키백과 아나콘다(Anaconda)는 패키지 관리와 디플로이를 단순케 할 목적으로 과학 계산(데이터 과학, 기계 학습 애플리케이션, 대규모 데이터 처리, 예측 분석 등)을 위해 파이썬과 R 프로그래밍 언어의 자유-오픈 소스 배포판이다. 패키지 버전들은 패키지 관리 시스템 conda를 통해 관리된다. 아나콘다 배포판은 1300만 명 이상의 사용자들이 사용하며 윈도우, 리눅스, macOS에 적합한 1,400개 이상의 유명 데이터 과학 패키지가 포함되어 있다. 때문에 머신러닝(Machine learning)이나 데이터 분석(Data analysis)를 하고자 한다면 여러 가지 귀찮은 일들을 줄일 수 있게 해줍니다. 설치 및 다운로드 www.anaconda.com/products/individual#downlo..
- 관련 라이브러리 설치 $ sudo apt update $ sudo apt install gfortran libopenblas-dev liblapack-dev libhdf5-dev - TensorFlow 2.2.0 패키지 다운로드 $ sudo wget http://1.229.109.140:3562/tensorflow/tensorflow-2.2.0.armv7l/tensorflow-2.2.0-cp37-none-linux_armv7l.whl 만약 위 주소로 다운이 않되면 직접 파일을 다운받아 처리하자. 최신버젼 : github.com/lhelontra/tensorflow-on-arm/releases tensorflow-2.2.0-cp37-none-linux_armv7l.whl : github.com/lhel..
====== 파일 하단에 아래 내용을 추가하자. == interface eth0 는 유선 설정 == interface wlan0 는 무선 설정 $ sudo nano /etc/dhcpcd.conf . . # fallback to static profile on eth0 interface eth0 static ip_address=192.168.1.111/24 static routers=192.168.1.1 static domain_name_servers=192.168.1.1 #fallback static_eth0 # Custom static IP address for wlan0. interface wlan0 static ip_address=192.168.1.111/24 static routers=192.16..
키보드 특수 문자가 이상한 문자로 표기될때 다음과 같은 과정으로 해결. 설정 파일 편집 # sudo nano /etc/default/keyboard # sudo reboot 또는 gui로 변경
Preferences 실행 Build, Execution, Deployment => Deployment => + => SFTP 선택 서버명 입력 SSH 추가 생성 ssh정보 입력 => Test Connection 서버쪽 경로를 직접 지정해보자 ( test001 폴더 ) 1를 눌러 대화상자에서 pi : /home/pi/test001 까지 => OK => OK 새 프로젝트 생성 ( test001 ) 로컬경로 설정 : 1번 New Folder => test001 => Create test001 => Open 기본설정을 확인한후 Create main.py 파일 생성 main.py => 오른쪽 버튼 => Deployment가 비활성화 상태이다. 메뉴 Tools => Deployment => Configuratio..
opencv sdk : samples에서 사용한 세팅방법에 대해 살펴보자.( compileSdkVersion API 30기준 ) 우선 opencv sdk를 다운받자.( opencv-4.4.0-android-sdk 기준 ) Releases opencv.org 안드로이드를 선택하고 sdk를 다운받고 압축을 풀자. 압축을 해제하면 아래와 같이 samples과 sdk가 존재한다. 이제 이 경로에 연습용 프로젝트를 생성하자. - Empty Activity - 아래와 같이 설정.. - Save location 경로는 sdk압축을 푼 경로에 맞추자. - Minimum SDK는 API 21 - Finish -> 아래처럼 구조가 형성되게 하면 된다. 연습용 프로젝트 servicecamera에 필요사항을 설정하자. - i..