Visioファイルを閲覧、pdf変換 リンクを取得 Facebook × Pinterest メール 他のアプリ 9月 25, 2024 Visioファイル(.vsd, .vsdx)を閲覧、pdf変換 かつて Visio Viewer という Internet Explorer のアドオンが存在しましたが、色々制約がある上 IE終了と共に呼び出しできなくなったっぽい 現在は One Drive へアップロードすれば、閲覧やpdfへの変換も可能になってます Read more »
Windows の PHP で https へ接続できない リンクを取得 Facebook × Pinterest メール 他のアプリ 9月 06, 2024 Windows の PHP 8.3.11 で file_get_contents で https を取得しようとしたら下記のエラー PHP Warning: file_get_contents(): Unable to find the wrapper "https" - did you forget to enable it when you configured PHP? 対応 php.ini を編集 ※php.ini が無ければ、php.ini-development や php.ini-production をリネームして使う 以下の二箇所を探してコメント(;)を外す extension_dir = "ext" extension=openssl 上は extensions のディレクトリ指定 下は openssl の利用 Read more »
Raspberry Pi の Python3 で ModuleNotFoundError: No module named 'Crypto' リンクを取得 Facebook × Pinterest メール 他のアプリ 9月 04, 2024 Raspberry Pi OS の Python3 で 公式( https://document.candyhouse.co/demo/webapi-ja ) を参考に sesame 制御のコードを書いていたら from Crypto.Hash import CMAC from Crypto.Cipher import AES の箇所で ModuleNotFoundError: No module named 'Crypto' のエラー Crypt は Cryptodome に変更されているらしく from Cryptodome.Hash import CMAC from Cryptodome.Cipher import AES で無事作動 Cryptodome が見つからないなら下記でインストール # apt install python3-pycryptodome 参考文献 https://stackoverflow.com/questions/51824628/modulenotfounderror-no-module-named-crypto-error Read more »