tensorflow 개발환경 3

리눅스 / 라즈베리파이 라즈비안 네트워크 공유폴더 만들기( samba)

1. 리눅스/ 라즈비안 (samba) 윈도우 네트워크 환경 방식. 2. samba 설치 sudo apt update sudo apt install samba 2. 공유 폴더 생성 및 samba 설정 mkdir ~/__SMB sudo vi /etc/samba/smb.conf 3. smb.conf 마지막 줄에 삽입 [__SMB] comment = Sharing Folder path = /home/pi/_SMB browseable = yes writable = yes create mask = 0644 directory mask = 0755 [__SMB] : 네트워크상에서 보여질 이름 comment = Sharing Folder : 공유폴더에대한 자신만의 설명으로 원하는 대로 적으면된다. path = /home..

tensorflow cpu only 개발환경 (cuda gpu x)

1. 아나콘다 콘솔 실행 conda create -n tensorflow_cpu2 python=3.7 # 가상환경 구축 명령어. conda create -n [name] python = [version] conda create -n tensorflow_cpu2 python=3.7 2. 윈도우 콘솔 실행 : 아래 명령 실행. activate tensorflow_cpu2 # tensorflow_cpu2 가상환경 실행. python -m venv --system-site-packages .\venv # 가상환경 venv 생성. .\venv\Scripts\activate # venv 실행. pip install --upgrade pip --user # pip 업그레이드 (--user 는 권환관련 옵션.) # t..