こめきちdiary

日々の仕事、生活でぶち当たった問題の解決策を書き残しています。あなたのお役に立てれば幸いです。

2021-10-01から1ヶ月間の記事一覧

【Windows】PrintScreenキーが無いキーボードでスクリーンショットを取る方法

[Windows]キー + [Shift]キー + [S]キー

【Python】JupyterLab failed to buildの対処(jupyterlab_variableinspector)

Variable InspectorはJupyter Labで変数の中身が確認できる拡張機能です。インストール中にエラーが出た際の対処方法をメモします。 インストール手順 >jupyter labextension install @lckr/jupyterlab_variableinspector →エラーになりました。RuntimeError…

【Python】URLError: <urlopen error [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: certificate has expired (_ssl.c:1129)>

import urllib.request as requrl = ページアドレスresponse = req.urlopen(url)とするとSSLCertVerificationErrorが出ました。以下を追加すると解決します。 import sslssl._create_default_https_context = ssl._create_unverified_context