전체 글(104)
-
Mac OS X에 Python 개발환경 만들기
평소에 R 만 쓰다보니 점점 지식이 편협해 지는 것 같아 Python을 해보려 마음먹었다.나중에 까먹을 것이 분명하므로 일단 Mac에서 수치계산 및 기계학습을 실행할 수 있는 환경을 구축하는 순서를 정리한다.이하 환경에서 정상 작동확인OS X Yosemite (10.10.4)설치 순서Homebrew 설치Ubuntu의 apt-get과 같이 Mac에서 패키지 관리를 편하게 해주는 Homebrew를 설치$ ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" Python의 버전 관리 툴 pyenv 설치Python의 버전 2.xx과 3.xx의 사양은 큰 차이가 있다고 하나 자세한 것은 잘 모르므로 인터프리..
2018.08.17 -
앱 패키지 이름 변경
Your app on Android StudioAndroid Studio is the official Integrated Development Environment (IDE) to build Android apps, it's based on IntelliJ IDEA and offers even more features that enhance your productivity when building Android apps.Either you created a new app or are editing an existing one, Android projects have their own package name which is an identifier of such project. It usually is m..
2018.08.08 -
MAC OS에서 MongoDB 설치하기
1. Homebrew 설치ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"2. Brew를 통한 MongoDB설치하기brew install mongodbMongoDB 환경 셋팅3. 데이터베이스 저장할 폴더 만들기mkdir -p /data/db4. 권한 부여하기chown $USER /data/db5. mongod 활성화하기mongod6. mongo shell 접속하기새로운 터미널을 연다음 mongo shell을 접속한다.mongoReferencehttps://www.mongodb.com/
2018.08.08 -
node @7 -> 8 update
Use Node version manager:For development systems you may test different versions so you may want to switch between versions on demand. This is possible using the nvm version manager. This allows you to try out your code in different versions and find problems.Install it using the script:$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.2/install.sh | bashThen you may directly use..
2018.08.08 -
How to Host Parse Server and Its Dashboard on Heroku
How to Host Parse Server and Its Dashboard on HerokuCreate an account on HerokuIn order for you to host Parse Server on Heroku, you need to first create a free account on heroku.com. If you want to get 1000 dyno free hours, you need to add your Credit Card details in your Account settings.I would suggest you to do that, you won't be charged a penny until you will exceed the 1000 free dyno hours...
2018.08.08 -
Heroku CLI 중요 명령어들
Heroku CLI 중요 명령어들heroku loginHeroku CLI의 기능을 사용하기 위해서는 반드시 로그인을 먼저 해야 합니다. 윈도우에서는 cmd에서만 로그인 할 수 있습니다. 만약 git bash 등 다른 shell들을 사용한다면 cmd에서 로그인 하고, 사용하는 shell을 재시작한 후에 Heroku CLI를 사용하면 됩니다.heroku logout한번 로그인이 되면 컴퓨터를 껏다 켜도 로그인이 계속 지속되고 로그아웃을 하기 위해서는 위 명령어를 입력해야 합니다.heroku createGit 저장소가 생성된 폴더에서 사용 가능한 명령어 입니다. 헤로쿠에 저장소를 생성하고 현재 git 저장소에 헤로쿠 저장소 위치를 heroku라는 이름으로 기억시킵니다. 이때 헤로쿠 저장소 이름이 랜덤하게 생성..
2018.08.08