분류 전체보기(524)
-
바이트 오브 파이썬(Byte of Python) & 파이썬으로 배우는 알고리즘 트레이딩 (개정판)
Byte of Python - 영문 Introduction · GitBook "A Byte of Python" is a free book on programming using the Python language. It serves as a tutorial or guide to the Python language for a beginner audience. If all you know about computers is how to save text files, then this is the book for you. This book python.swaroopch.com 바이트 오브 파이썬 기초 - 한글 byteofpython-korean.sourceforge.net/byte_of_python.html#fr..
2020.06.30 -
주피터 노트북 LaTex 수식 공백 띄어쓰기
$$ 사이에 \, 한칸\; 두칸\quad 네칸\qquad 여덟칸\, # 1 space\; # 2 space\quad # 4 space\qquad # 8 space
2020.06.22 -
[protobuf installation on MAC] 맥에서 프로토버프 설치
1. Unix tools 사용을 위해 앱스토어에서 Xcode 설치 2. 터미널에서 sudo xcode-select --install 3. "port"설치를 위해 www.macports.org/에 접속 -> 운영체제에 맞는 .pkg 설치. 4. 터미널에서 sudo /opt/local/bin/port install autoconf automake libtool 5. github.com/protocolbuffers/protobuf/releases 에서 필요한 파일 다운로드 (예. protobuf-python-3.12.3.tar.gz ) 6. tar 파일이나 zip 파일 압축 풀린 경로로 들어가서(cd /경로/protobuf-3.12.3) ./configure # ./configure --prefix=/usr ..
2020.06.11 -
[pip] python pip 설치 on centos7
pip 설치 on centos7 sudo yum install -y epel-release sudo yum install python-pip pip --version pip install --upgrade pip or sudo easy_install pip centos7 에서 pip는 여기 위치한다 -> /usr/local/bin/pip3.x
2020.05.29 -
[jupyter notebook]주피터노트북 설치 centos7
centos7에 주피터노트북 설치 파이썬 3.3버전 이상 또는 2.7 아나콘다 (conda) conda install -c conda-forge jupyterlab pip pip install jupyterlab 실행 jupyter notebook 주피터 노트북 원격접속 [jupyternotebook] on centos 원격접속 jupyter notebook --generate-config jupyter_notebook_config.py 생성된다 생성된 디렉토리로 이동 vi jupyter_notebook_config.py i 누르고 # 주석 제거 후 c.NotebookApp.ip = 'localhost' 를 c.NotebookApp.ip.. uwgdqo.tistory.com 파이썬2 만 있을때, 파이썬3..
2020.05.28 -
[jupyter notebook markdown]주피터 노트북 마크다운
주피터 노트북 마크다운 jupyter notebook markdown 1. 제목 코드 실행결과 (ctrl-Enter) 2. 줄바꿈 그냥 엔터만 눌렀을 경우. 스페이스 두번후 엔터 눌렀을 경우. 또는 이용. 3. 텍스트 색(text color) 텍스트(text) 텍스트(text) 텍스트(text) 텍스트(text) 텍스트(text) 텍스트(text) 4.수식 $ 수식 $ 예시 {h}_{W,b}{(X)} = ϕ(XW+b) $ w_{ij}^{(nextstep)} = w_{i,j}+η(y_j−\hat{y}_j)x_i $ 가운데 \begin{align*} {h}_{W,b}{(X)} & = ϕ(XW+b) \end{align*} 그릭 알파벳(Greek alphabet) Greek alphabet. NameSymbol..
2020.05.28