ひできちの楽天ブログ
2025
2024
2023
2022
2021
2020
2019
2018
2017
2016
1月
2月
3月
4月
5月
6月
7月
8月
9月
10月
11月
12月
全1件 (1件中 1-1件目)
1
from azure.storage.blob import BlockBlobServiceこのimport 文でエラーになったときはazure 用Python ライブラリーがinstall されていないので以下でインストールすればよいですなただしライブラリーのバージョンが2種類ありますのでそこは注意が必要ですなv2.1 用pip install azure-storage-blob==2.1.0V12用pip install azure-storage-blob以下のimport文でエラーとなった場合も同様でございますよfrom azure.storage.queue import QueueService, QueueMessageFormat以下を実行してライブラリーをintall する必要がありますなv2.1 用pip install azure-storage-queue==2.1.0V12用pip install azure-storage-queue
2022/05/30
コメント(0)