본문 바로가기
반응형

Develop368

결과 보호되어 있는 글 입니다. 2022. 12. 13.
module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK' error File "/usr/lib/python3/dist-packages/OpenSSL/crypto.py", line 1573, in X509StoreFlags CB_ISSUER_CHECK = _lib.X509_V_FLAG_CB_ISSUER_CHECK AttributeError: module 'lib' has no attribute 'X509_V_FLAG_CB_ISSUER_CHECK' 해결방법 sudo pip3 install pyOpenSSL --upgrade 2022. 12. 4.
[Ubuntu] 라즈베리파이에 크롬드라이버 설치 chromedriver 설치 sudo apt install chromium-chromedriver 파이썬 패키지 다운로드 pip3 install selenium 파이썬 코드 설정 chrome_options = webdriver.ChromeOptions() chrome_options.add_argument('--headless') chrome_options.add_argument('--no-sandbox') chrome_options.add_argument('--disable-dev-shm-usage') driver = webdriver.Chrome(executable_path="/usr/bin/chromedriver",chrome_options=chrome_options) 참고로 selenium 상위 버.. 2022. 12. 4.
django + Maria DB 연동 migrate 문제 migration 진행시 나타나는 오류 django.db.migrations.exceptions.InconsistentMigrationHistory: Migration admin.0001_initial is applied before its dependency accounts.0001_initial on database 'default' 여기서 읽어보면 accounts.0001_initial에 dependency 오류가 있다고 하는 것을 확인할 수 있다. account 폴더의 migrations 폴더를 삭제하면 더이상 오류가 생기지 않는다. 외래키와 메인키 칼럼의 설정이 일치하지 않아 나타나는 오류 (errno: 150 "Foreign key constraint is incorrectly formed").. 2022. 12. 3.
Mac 블루레이 플레이어 추천 Leawo blu-ray player가 무료이며, 쓰기 좋다. www.leawo.com/blu-ray-player-mac/여기서 다운 가능하다. 2021. 4. 6.
반응형