https://learn.microsoft.com/ko-kr/sysinternals/downloads/strings 문자열 - Sysinternals이진 이미지에서 ANSI 및 UNICODE 문자열을 검색합니다.learn.microsoft.com 1. Strings 설치 확인 2. 문자열 확인strings.exe "파일 경로" > 저장할이름.txt
Streamlit데이터 사이언티스트도 분석 모델의 UI(사용자인터페이스)를 쉽게 구성할 수 있도록 python에서 제공하는 app library입니다https://streamlit.io/ Streamlit • A faster way to build and share data appsStreamlit is an open-source Python framework for machine learning and data science teams. Create interactive data apps in minutes.streamlit.io 1. 가상환경 생성conda create -n '가상환경명' python=='파이썬버전' 가상환경 활성화conda activate '가상환경명' 2. streamlit 설치p..
프로젝트마다 GITHUB와 GITLAB 계정 각각 사용하기개인적으로 사용하는 github 개인 계정과 회사에서 사용하는 gitlab 계정이 다를 때 특정 git 계정으로 commit 및 push를 해야하는 일이 발생하는 경우, 프로젝트마다 계정 설정을 다르게 진행해주어야 한다. 1) GITLAB 설정Access Tokens 추가Access Token값을 추가하여 Token 값으로 commit / push 진행 2) GITHUB 프로젝트를 진행할 폴더 생성프로젝트를 진행할 폴더에서 cmd 실행 후 아래 내용 입력예시)git config --local user.name "현재 레포에서 사용할 이름"git config --local user.email "현재 레포에서 사용할 이메일" 3) GITLAB 프로젝트..
1. Tortoise Git 설치https://tortoisegit.org/ TortoiseGit – Windows Shell Interface to GitGet Support Manuals, FAQ, bug reporting, mailing list, and more…tortoisegit.org 2. GIT 설치https://git-scm.com/ Git git-scm.com 3. GIT 계정 설정git config --global user.name "이름"git config --global user.email "이메일"
1. 오라클 VirtualBox 다운로드https://www.virtualbox.org/ Oracle VM VirtualBoxWelcome to VirtualBox.org! News Flash New May 3rd, 2024VirtualBox 7.0.18 released! Oracle today released a 7.0 maintenance release which improves stability and fixes regressions. See the Changelog for details. New April 16th, 2024VirtualBox 7.0.16 releasedwww.virtualbox.org VirtualBox 및 설치 후 USB 사용을 위해 확장팩(Extension Pack)도 함께 ..
Chromdriver를 사용하도록 설정하기 if getattr(sys, 'frozen', False) and hasattr(sys, "_MEIPASS"): driver_path = os.path.join(sys._MEIPASS, "chromedriver.exe") driver = webdriver.Chrome() # print('running in a Pyinstaller bundle') else: driver = webdriver.Chrome() # print('running in a normal Python process') pyinstaller로 실행파일 생성 pyinstaller -w -F "파이썬 소스코드 경로"