일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- VirtualBox
- Android
- vsCode
- qunit
- androidstudio
- unittest
- ReactNative
- centos
- 맥
- 센토스
- MAC
- linux
- jest
- xcode
- webpack
- 리눅스
- PYTHON
- MachineLearning
- build
- 티스토리챌린지
- 오블완
- 네트워크
- localserver
- Chrome
- 개발
- IOS
- react
- TensorFlow
- node
- Today
- Total
목록분류 전체보기 (490)
로메오의 블로그
[카테고리] TENSORFLOW tensorflow설치하기 $ pip3 install tensorflow 설치확인 $ pip3 show tensorflow Name: tensorflow Version: 2.0.0 Summary: TensorFlow is an open source machine learning framework for everyone. ..... python idle 실행하기 응용프로그램 > Python 3.7 > IDLE.app 을 실행합니다. File > New File을 실행합니다. import tensorflow as tf hello = tf.constant("hello world!") session = tf.compat.v1.Session() print(session.run(he..
[카테고리] TENSORFLOW 설치확인 MacOS에는 기본적으로 Python 2.7 버전이 설치되어 있습니다. $ python --version Python 3.7버전을 설치하겠습니다. xcode-select를 설치합니다. $ xcode-select --install Homebrew를 설치합니다. $ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 설치가 완료되면 doctor를 실행합니다. $ brew doctor 이제 python 3을 설치합니다. $ brew install python3 버전 확인하기 $ python3 --version Python 3.7.3 $ pytho..
프로젝트 생성 $ react-native init firstProject $ cd firstProject react-native-call-log 설치 $ npm install --save react-native-call-log $ react-native link react-native-call-log AndroidManifest.xml AndroidManifest.xml 파일에 READ_CALL_LOG permission을 추가합니다. App.js import React, { Component } from 'react'; import { PermissionsAndroid, StyleSheet, Text, View } from 'react-native'; import CallLogs from 'react-..
Android 프로젝트 생성 Empty Activity를 선택하고 Next를 누릅니다. Name, Save location, Language를 설정하고 Finish를 누릅니다. AndroidManifest.xml READ_CALL_LOG 권한을 추가합니다. activity_main.xml 버튼을 하나 만듭니다. MainActivity.java package com.gaeyou.calllog; import android.content.pm.PackageManager; import android.database.Cursor; import android.provider.CallLog; import android.support.v4.app.ActivityCompat; import android.support.v..
adb로 권한 목록 조회하기 디바이스 목록을 조회합니다. $ adb devices 디바이스를 선택하고 permission 목록을 조회합니다. $ adb -s emulator-5554 shell pm list permissions -d -g permission:android.permission.ACCESS_FINE_LOCATION permission:android.permission.CAMERA 위 두 개의 permission을 획득해 보겠습니다. Android 프로젝트 생성 Empty Activity를 선택하고 Next를 누릅니다. Name, Save location, Language를 설정하고 Finish를 누릅니다. AndroidManifest.xml AndroidManifest.xml 에 CAM..
React 목록 react-navigation 설치하기 $ npm install react-navigation $ npm install react-native-gesture-handler $ react-native link react-native-gesture-handler xCode는 react-native-gesture-hadler를 manual 설정해야 합니다. xCode에서 Libraries에서 마우스 오른쪽 클릭 > Add Files to /node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj 선택하고 Add합니다. 프로젝트를 선택하고 Build Phases > Link Binary With Libraries (+) 아..
App.js import React, { Component } from 'react'; import { createAppContainer, createStackNavigator } from 'react-navigation' import HomeScreen from './src/HomeScreen' import DetailsScreen from './src/DetailScreen' const RootStack = createStackNavigator( { Home: { screen: HomeScreen, }, Details: { screen: DetailsScreen, }, }, { initialRouteName: 'Home', } ); const AppContainer = createAppContaine..
React 목록 react-navigation 설치 $ npm install react-navigation $ npm install react-native-gesture-handler $ react-native link react-native-gesture-handler xCode는 react-native-gesture-hanlder를 manual로 설정해줘야 합니다. xCode에서 Libraries에서 마우스 오른쪽 클릭 > Add Files to /node_modules/react-native-gesture-handler/ios/RNGestureHandler.xcodeproj 선택하고 Add합니다. 프로젝트를 선택하고 Build Phases > Link Binary With Libraries (+) ..