command not found 우분투
·
IT/Ubuntu
우분투 컴파일시에 아래와 같은 오류가 난다면, 아마도 업그레이드를 했거나 권한이 없어서 일수 있다 아래와 같이 commands.db를 일기 권한을 주면 된다 sudo chmod a+r /var/lib/command-not-found/commands.db
anaconda 환경에서 32bit python 실행하기
·
IT/Python
(py38_32) D:\Stock\Kiwoom_datareader-master>python --version Python 3.8.8 (py38_32) D:\Stock\Kiwoom_datareader-master>python Kiwoom_datareader_v0.1.py Traceback (most recent call last): File "C:\Users\bianco\AppData\Roaming\Python\Python38\site-packages\pandas\__init__.py", line 29, in from pandas._libs import hashtable as _hashtable, lib as _lib, tslib as _tslib File "C:\Users\bianco\AppData\Ro..
파이썬 pip 인스톨시에 ssl 오류로 인스톨 안될 때
·
IT
오류내용 : CERTIFICATE_VERIFY_FAILED error 블라블라블라.... 파이썬 관련 여러 패키지 설치시에 아래처럼 SSL 인가가 안되는 경우가 발생한다 > pip install tensorflow==2.4.1 Defaulting to user installation because normal site-packages is not writeable WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certif..
키움 수식 관련 내장함수
·
주식/기법
http://download.kiwoom.com/hero3_help_new/012.htm 수식관리자 - 사용자 함수 설정 ① 가격 이동평균의 크로스를 이용한 전략 전략 로직 : 골든크로스 시 매수, 데드크로스 시 매도 검색 로직 : 골든크로스 시 매수, 데드크로스 시 매도 전략명 이동평균 크로스 전략 검색명 이동 download.kiwoom.com 시스템트레이딩 수식관리자 - 사용자 함수 설정 수식관리자 버튼을 클릭하면 수식관리자 창이 pop up 형태로 나타납니다. 사용자 자신만의 기술적 지표/신호검색/시스템트레이딩/강세약세/함수를 만들 수 있습니다. 기본 지표/신호검색/시스템트레이딩/강세약세/함수는 수정이 불가능하나, 사용자가 저장한 항목은 수정이 가능합니다. 1. 상단 메뉴 ① 복사 복사하려는 수식..
php 튜닝에 대한 정보 참고 사이트
·
카테고리 없음
https://haydenjames.io/php-fpm-tuning-using-pm-static-max-performance/ PHP-FPM tuning: Using 'pm static' for max performance Let's take a very quick look at how best to set up PHP-FPM for high throughput, low latency, and more stable use of CPU and memory. By default, most haydenjames.io
Process 메모리 사용량 계산하기
·
IT/Ubuntu
Linux에서 특정 프로세서가 메모리를 얼마나 사용하고 있는지 'ps' 명령으로 계산해서 보기 위한 명령 ps --no-headers -o "rss,cmd" -C php-fpm7.0 | awk '{ sum+=$1 } END { printf ("%d%s\n", sum/NR/1024,"M") }' 여유 메모리 죄회는... free -h