https://www.terabyteunlimited.com/image-for-windows/ Image for Windows Drive image backup and restore software that is affordable, reliable, and easy to use. Copy/clone drives, migrate to new systems, and more. www.terabyteunlimited.com 이거 사용하면 됨.. 윈도우 정품인증된거 복사까지 잘 됨..백업하는 용도로 사용하면 좋을듯 ㅎ
테스트 결과 제대로 실행 됨. 아래 소스코드를 이용하면 원하는 시간만큼만 while문을 실행한다. 웹자동화 또는 특정 작업을 수행할떄 x초 대기 후 에러문 출력하거나 예외 처리할때 사용하면 됨 import time # 현재 시간 저장 current_time = time.time() # 특정 시간 지정 (단위:초) certain_time = 5 # 특정 시간 만큼 반복문 실행 while (time.time() - current_time) < certain_time: # 원하는 작업 pass
파이썬으로 셀레니움 웹 자동화 실행 시 나오는 까만창(콘솔)을 없애는 방법 1.파이썬 설치 경로로 들어가기 본인이 설치한 파이썬 경로로 들어간다.. 아래의 경우 나의 파이썬 설치 경로다.. C:\Users\사용자이름\AppData\Local\Programs\Python\Python37\Lib\site-packages\selenium\webdriver\common 2.service.py 찾아서 수정하기 self.process = subprocess.Popen(cmd, env=self.env, close_fds=platform.system() != 'Windows', stdout=self.log_file, stderr=self.log_file, stdin=PIPE, creationflags=0x0800000..
1.pip install jupyter 했을때 설치된 경로까지 사용자 환경변수 Path에 넣어줌 (사용자 환경에 따라 다름. 나의 경우 >> C:\Users\User\AppData\Roaming\Python\Python37\site-packages) 2.cmd에서 jupyter notebook 해봤는데 안됨. 3. python -m notebook 이거 했더니 됨. 더보기 참고자료 https://stackoverflow.com/questions/41034866/running-jupyter-via-command-line-on-windows