전체 글(181)
-
[python] pyinstaller chromedriver 콘솔창 제거
selenium을 사용하기 위해 chromedriver를 프로젝트내에 패킹했고, 경로 잡아주고 실행이 되는 것을 확인 했다. 그래서 pyinstaller --noconsole 옵션도 주고 webdriver 옵션에 options.add_experimental_option('excludeSwitches', ['enable-logging']) 도 줘봤고.. options.add_argument("--headless") options.headless = True 도 설정해봤는데 계속 뜨네???? google에 답이 있기에 추가로 검색 되도록 남깁니다. 파이참에서 shift 두번 누르면 All 검색이 가능하다 service.py로 검색해보면 webdriver\common 으로 끝나는 파일이 보이는데 열어서 아래와..
2021.08.02 -
[pyinstaller] 이미지 추가
음.. 일단 구글링에서 나온.. # Resource def resource_path(relative_path): try: # PyInstaller에 의해 임시폴더에서 실행될 경우 임시폴더로 접근하는 함수 base_path = sys._MEIPASS except Exception: base_path = os.path.abspath(".") return os.path.join(base_path, relative_path) 이미지 경로 찾는 함수 -F 옵션 등의 이유로 onefile.exe로 생성된 python 결과물은 실행 될때에 임시폴더에서 파일이 실행 되는 구조 -F 대신 -D를 주면 잘 된다. .spec 파일을 직접 수정해서 pyinstaller 실행해보라는 글도 봤는데.. pyinstaller을 실행..
2021.06.09 -
[React] Invalid host header 오류
yarn start 하는데 어제 되던게 갑자기 오늘 안돼..? :3000포트 붙은 개발 서버에 갑자기 Invalid Host header 가 뜨는군... 리액트가 설치된 모듈 디렉터리 들어가서 /node_modules/react-scripts/config/webpackDevServer.config.js 파일 열어서 (안건드렸으면 아래와 같을 것이다..) [disableHostCheck] 검색 // @remove-on-eject-begin /** * Copyright (c) 2015-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directo..
2021.04.01 -
[Oracle Cloud Server]오라클 클라우드 서버 외부접속
오라클 클라우드 서버 생성은 하고 왔니? https://babysunmoon.tistory.com/entry/Oracle-Cloud-Server%EC%98%A4%EB%9D%BC%ED%81%B4-%ED%81%B4%EB%9D%BC%EC%9A%B0%EB%93%9C-%EC%84%9C%EB%B2%84-%EC%83%9D%EC%84%B1 [Oracle Cloud Server]오라클 클라우드 서버 생성 오라클 클라우드 생성 준비물 생성한 계정, puttygen(ssh key의 이유로), putty.exe(접속해야지?) cloud.oracle.com Oracle Cloud Infrastructure cloud.oracle.com 접속 계정생성. 가입은 해외결제가 되는 카드.. babysunmoon.tistory.com ..
2021.02.16 -
[Oracle Cloud Server]오라클 클라우드 서버 생성
오라클 클라우드 생성 준비물 생성한 계정, puttygen(ssh key의 이유로), putty.exe(접속해야지?) cloud.oracle.com Oracle Cloud Infrastructure cloud.oracle.com 접속 계정생성. 가입은 해외결제가 되는 카드 정보를 입력하는게 있으며, 결제가 1달러 정도 됬다가 바로 취소된다. 나머지는 입력하라는 정보 입력하고 메일인증, 휴대폰 인증이 있다. (가입 도중 인증 문자가 안오는 경우가 있다. 이건.. 다음날 하니까 잘 됬다...) 가입 후 로그인을 한 뒤에 cloud.oracle.com Oracle Cloud Infrastructure cloud.oracle.com 로 접속이 잘 되었다면 한글을 사랑해보자. 인스턴스 생성 클릭 인스턴스 이름 이..
2021.02.05 -
[MYSQL] timeout 설정
MYSQL Timeout interactive_timeout - 콘솔에서 mysqld와 Client의 connection 후 다음요청을 기다리는 시간 wait_timeout - 플러그인, API 등을 이용해 (PHP, JDBC) connection 후 다음요청을 기다리는 시간 Global 설정 확인 mysql> show global variables like '%timeout'; Session 설정 확인 mysql> show variables like '%timeout'; 변경 mysql> set interactive_timeout=300; mysql> set global interactive_timeout=300; mysql> set wait_timeout=300; mysql> set global wa..
2021.02.01 -
[php-fpm] php-fpm 재시작
따로 yum이나 컴파일 설치가 아닌 php 소스컴파일 설치 시 php-fpm 옵션으로 설치를 했다면 service에도 안올라가고 뭐..많이 없다? 그럴때... 소스컴파일 했던 php 디렉터리에 /sapi/fpm/ 경로로 가서 cd /usr/local/src/[php디렉터리]/sapi/fpm/ cp init.d.php-fpm.in /etc/init.d/php-fpm 복사 후 vim /etc/init.d/php-fpm 열어서 BIN - 실행파일 위치 CONF - 설정파일위치 PID - 설정파일에서 적은 .pid위치 를 설정 해준다. 물론 그 전에 php-fpm 설정을 해야겠지? php_fpm_BIN=/usr/local/php/sbin/php-fpm php_fpm_CONF=/var/local/php/etc/p..
2020.11.24 -
return _compile(pattern, flags).sub(repl, string, count) TypeError: expected string or bytes-like object
re.sub 사용시 에러 어쩌구 저쩌구 return _compile(pattern, flags).sub(repl, string, count) TypeError: expected string or bytes-like object 나온다... 치환을 하고 싶어서 사용한 re.sub()가 구글링에선 많이 보이는데 오류가 난다? tag = re.sub('', '', tag) (태그를 제거 하고 싶었다) 말고 tag = re.sub('', '', '{}'.format(tag)) 잘 알고 있는 format을 써보자..
2020.07.01 -
[python] 개발환경 for visual studio
VisualStudio 설치 https://visualstudio.microsoft.com/ko/ Visual Studio IDE, 코드 편집기, Azure DevOps 및 App Center - Visual Studio Visual Studio 개발자 도구 및 서비스로 모든 플랫폼에서 어떤 언어로든 앱 개발을 쉽게 할 수 있습니다. Mac 및 Windows 코드 편집기, IDE 또는 Azure DevOps를 체험해 보세요. visualstudio.microsoft.com 알아서 잘 설치 하리라 믿어 의심치 않는다... VisualStudio 파이썬개발도구 추가 Visual Studio 를 잘 설치 했다면 시작프로그램에서 Visual Studio Installer를 확인 할 수 있다. 실행해보자. 설치됨..
2020.04.01 -
[리눅스] du 명령어 / 디스크 사용 현황 출력
du [옵션] 경로 /usr/bin/du 옵션 -a, --all : 현재 디렉터리 아래의 모든 파일과 디렉터리의 사용 정보를 출력한다. -B, --block-size=SIZE : 블록의 크기(SIZE)를 지정한다. 지정한 블록의 크기 단위로 용량을 출력한다. -b, --bytes : 바이트 크기로 출력한다. -c, --total : 모든 파일의 디스크 사용 정보를 출력하고 나서 합계를 출력한다. 이것은 해당 경로가 얼마만큼의 디스크 공간을 사용하는지 확인할 때 사용한다. -D, --dereference-args : 지정한 파일이나 경로가 심볼릭 링크 파일이면 원본의 값을 출력한다. -h, --human-readable : 파일 용량을 보기 쉬운 형태로 출력한다. -H, --si : -h와 비슷하나, 1,..
2020.03.31