관리 메뉴

Storage Gonie

Introduction (2) 사용되는 프로그램 및 툴 다운로드 및 정상작동 확인 본문

웹개발/인스타 클론 (1) Django

Introduction (2) 사용되는 프로그램 및 툴 다운로드 및 정상작동 확인

Storage Gonie 2019. 4. 17. 14:44
반응형

사용되는 프로그램

Visual Studio Code

- 아톰, 브라켓, 서브라임 중 아무거나 써도 됨.

XCode(for ios app)

- 맥 또는 ios 앱을 만들고 싶다면 필요함

- 맥 없이 ios 앱은 테스트하거나 시뮬레이팅을 할 수 없다.

- 맥 유저

Android Studio(for android app)

- 안드로이드 앱을 만들기 위해 필요함

- 윈도우 / 맥 유저

Genymotion(for android app)

- 안드로이드 앱을 만들고 싶지는 않지만 어떻게 보이는지 테스트만 하고싶다면 사용할 수 있는 것

- 윈도우 유저

Expo(for android app)

- 이걸 모른다면 <리액트 네이티브> 무료수업을 꼭 수강하고 와.

Nodejs, NPM, Yarn(for front-end, react, react-native)

- 프론트엔드와 앱을 위해서 필요함.

Python 3.6, pip, pipenv(for back-end)

- 백엔드를 위해 필요함

Postgres(for database)

- 맥 유저라면 postgres app를 윈도우 유저라면 postgres pg admin 을 검색하여 설치하면 됨.

Explo Client(for testing android/iso app)

- android/iso 앱을 테스트 하고 싶다면 운영체제 상관없이 이를 설치해라.

- 이 소프트웨어를 사용하면 앱 스토어 승인이나 XCode 사용없이 바로 테스트를 해볼 수 있다.

다운로드 방법

brew

- https://brew.sh/

 

Visual Studio Code

https://code.visualstudio.com/

- 아래는 편의를 위한 확장팩 다운로드

- Sublime Text Keymap : https://marketplace.visualstudio.com/items?itemName=ms-vscode.sublime-keybindings

- React Extension Pack : https://marketplace.visualstudio.com/items?itemName=jawandarajbir.react-vscode-extension-pack

- Prettier Javascript Formater : https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode

- Python Extension Pack : https://marketplace.visualstudio.com/items?itemName=donjayamanne.python-extension-pack

 

Android Studio

https://developer.android.com/studio/index.html


Genymotion

https://www.genymotion.com/desktop/


Expo

https://developer.apple.com/kr/xcode/

 

Nodejs

- https://nodejs.org/en/download/


Npm

- nodejs 설치하면 같이 설치되는 경우가 있음. 안될경우 다음 링크 이용.

- https://docs.npmjs.com/downloading-and-installing-node-js-and-npm


Yarn

- 'brew install yarn' 으로 설치. 안될경우 다음 링크 이용.

- https://yarnpkg.com/lang/en/docs/install/#mac-stable

 

Python

- 안깔려 있는 경우에만 설치

- https://www.python.org/downloads/


Pip

- python 설치하면 같이 설치되는 경우가 있음. 안될경우 다음 링크 이용.

https://pip.pypa.io/en/stable/installing/


Pipenv 

- 'pip install pipenv' 으로 설치. 안될경우 다음 링크 이용.

https://pipenv.readthedocs.io/en/latest/#install-pipenv-today

 

Postgres

- mac : https://postgresapp.com/downloads.html

- windows : https://www.pgadmin.org/download/

 

Explo Client

- ios : https://itunes.apple.com/app/apple-store/id982107779

- android : https://play.google.com/store/apps/details?id=host.exp.exponent

프로그램 및 툴의 정상작동 확인

brew

- 터미널에서 'brew'

 

Nodejs

- 터미널에서 'node -v'


Npm

- 터미널에서 'npm'


Yarn

- 터미널에서 'yarn'

 

Python

- 터미널에서 'python'

- 파이썬 2.7이 뜬다면 'python3'


Pip

- 터미널에서 'pip'


Pipenv 

- 터미널에서 'pipenv'

 

Postgres

- 상단에 코끼리 모양이 보여짐

 

반응형
Comments