일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- node.js 연동
- mongoDB [Object]
- util.inspect
- homebrew
- Windows10
- Jupyter notebook
- node.js설치
- 맥에 파이썬 설치
- mongodb
- Installation
- [Object]
- 파이썬3
- collection.find
- mongodb nodejs driver
- pip jupyter
- MacOS
- nodejs mongodb
- MYSQL
- console.log
- mongo-native
- Projection
- 맥
- query
- python3
- Node.js
- Today
- Total
목록설치 (7)
Bon Voyage
Introduction tmux is a terminal multiplexer. It enables a number of terminals to be created, accessed, and controlled from a single screen. tmux may be detached from a screen and continue running in the background, then later reattached. Using tmux, you can keep the remotely connected session even though you are not in front of your computer, which is convenient when you have to call it a day bu..
python 공식 문서는 여기서 확인할 수 있다. 12. Virtual Environments and Packages — Python 3.8.1 documentation 12.1. Introduction Python applications will often use packages and modules that don’t come as part of the standard library. Applications will sometimes need a specific version of a library, because the application may require that a particular bug has been docs.python.org virtualenv 패키지는 각자의 환경에 설치된 모듈..
새로운 맥에 python 3, pip를 설치해야 하는데 은근 또 기억이 안나서 정리함 Python Release Python 3.8.1 The official home of the Python Programming Language www.python.org Python 공식 홈페이지에서 현재 기준 (2019. 12) 최신 버전의 Mac용 python 다운받고 설치함 그 후 terminal에서 python3 을 실행하면 python 3.8.1 (2019년 12월 기준 최신 버전)이 실행됨을 확인 그런데 python3을 쉽게 python으로 쓰고 싶어서 환경변수로 설정을 해 주기로 함! Linux와 달리 Mac은 .~/.bash_profile에 환경 변수 설정을 해 주면 된다. 왜 ~/.bash_profil..
1. Node.js 다운로드 https://nodejs.org/ko/ Windows (x64), 10.16.0 LTS 다운받기. (19년 7월 기준 안정적인 배포판) 2. Node.js 설치 node-v10.16.0-x64.msi 파일을 실행하여 설치한다. 3. node.exe 환경변수 설정 명령 프롬프트에서 node를 입력했을 때 바로 실행되지 않는 경우, 시스템 환경 변수를 설정해줘야 한다. 제어판\시스템 및 보안\시스템에서 고급 시스템 설정 클릭 하단의 환경 변수 클릭 시스템 변수 새로 만들기 기본 설치 경로는 c:\Program Files\nodejs\node.exe인데, 다른 곳에 설치했다면 그 경로로 준다. 중요한 점은 node.exe 실행파일명까지 다 적어줘야 한다. 4. 명령 프롬프트에서 ..
참고한 URL https://www.44bits.io/ko/post/understanding-jupyter-multiple-kernel-using-python2-and-python3-kernel 0. 들어가기 전에 난 python3 설치가 되어 있는 상태에서 jupyter를 설치했다. (참고 : https://nangkyeong.tistory.com/entry/MacOS에-Homebrew로-python3-설치하기 ) 현재 pip 버전은 아래와 같다 $ pip --version pip 19.1.1 from /usr/local/lib/python3.7/site-packages/pip (python 3.7) 1. jupyter 설치 $ pip install jupyter 2. jupyter 실행 $ jupyt..
1. brew 명령으로 python3을 설치하자 brew install python3 아래의 안내문이 나온다 ==> python Python has been installed as /usr/local/bin/python3 Unversioned symlinks `python`, `python-config`, `pip` etc. pointing to `python3`, `python3-config`, `pip3` etc., respectively, have been installed into /usr/local/opt/python/libexec/bin If you need Homebrew's Python 2.7 run brew install python@2 You can install Python packa..
참고한 URL은 여기! >> https://whitepaek.tistory.com/16 1. 설치한 Mac, Hombrew, MySQL 버전 MacOS Mojave 10.14.3 version Homebrew 2.1.7 mysql Ver 8.0.16 for osx10.14 on x86_64 (Homebrew) 2. Homebrew로 MySQL 설치 Homebrew 최신으로 업데이트 brew update brew 명령으로 mysql 찾기 brew search mysql brew 명령으로 mysql 설치 brew install mysql brew 명령으로 mysql 설치된 것 확인 brew list | grep mysql 3. MySQL 설정하기 설치 후 안내 메세지는 이렇게 나온다 ==> mysql We'..