일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- urllib
- IOS
- javascript
- PyQt
- ubuntu
- MS-SQL
- GIT
- 라즈베리파이
- 함수
- mssql
- PER
- Unity
- tensorflow
- python
- node.js
- PyQt5
- Excel
- sqlite
- MySQL
- pandas
- 유니티
- port
- 다이어트
- swift
- ASP
- 맛집
- 날짜
- Linux
- 리눅스
- flutter
목록MAC (5)
아미(아름다운미소)
Mojave에서 Catalina로 업데이트하고 터미널을 실행하고 bash 쉘에서 기본 / 선호 zsh 쉘로 전환했습니다. sudo nano $HOME/.zshrc export PATH="$PATH:/YOUR_FLUTTER_SDK_DIR/flutter/bin"
Mac에 TensorFlow 설치 Python 3.6.x로 설치합니다. $ python --version Python 3.6.3 tensorflow를 설치합니다. $ pip3 install tensorflow 설치가 되는 것을 확인할 수 있습니다. 이제 tensorflow가 정상적으로 설치 되었는지 확인해 봅시다. python 명령 실행 후 아래 코드를 실행해 봅니다. >>> import tensorflow as tf >>> hello = tf.constant('Hello, tongchun') >>> sess = tf.Session() >>> print(sess.run(hello)) b'Hello, tongchun' tensorflow의 버전을 확인할 수 있다. >>> import tensorflow a..
단축키에 대한 Apple 설명을 아래 링크에서 확인 가능 합니다. [https://support.apple.com/ko-kr/HT201236] Command + H: 현재 보고있는 창 내리기 Command + Option + H: 현재 보고있는 것 외의 앱 모두 내리기. Command + W: 현재 보고있는 앱을 닫습니다. Command + Option + W: 현재 열려있는 모든 앱의 창을 닫습니다. Command + Q: 현재 선택된 앱을 종료합니다. Command + SpaceBar: Spotlight 검색필드를 표시하거나 가립니다. Command + Shift + 3: 전체화면 스크린샷 저장 Command + Shift + 4: 화면 일부 스크린샷 저장 Command + Shift + 4: + S..
Mac에서도 hosts파일을 변경할 수 있습니다. hosts 파일 경로는 /private/etc/hosts 입니다. $ sudo vim /private/etc/hosts ## # Host Database # # localhost is used to configure the loopback interface # when the system is booting. Do not change this entry. ## 127.0.0.1 localhost 255.255.255.255 broadcasthost ::1 localhost
Homebrew는 Apple에서 제공하지 않는 유용한 패키지를 관리합니다. [https://brew.sh/index_ko.html]. 설치 명령은 아래와 같습니다. /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 설치 후 버전 확인인 -v로 확인 할 수 있습니다. $ brew -v Homebrew 1.3.6 Homebrew/homebrew-core (git revision 1728; last commit 2017-10-25) brew를 통해 설치된 리스트를 확인하려면 list 옵션으로 가능합니다. $ brew list 만약 설치 후 brew 명령을 실행했을때 -bash: bre..