问题描述
已成安装qiniu sdk-7.22 ,code下面无法导入任何包
问题出现的环境背景及自己尝试过哪些方法
python 版本 3.7
django 2.0.9
qiniu-7.2.2
相关代码
// 请把代码文本粘贴到下方(请勿用图片代替代码)
from django.shortcuts import render, redirect, reverse
from django.contrib.auth.decorators import login_required
from qiniu import Auth
@login_required
def hello_view(request):
pass
accessKey = 'wEZLUcqSJtN6FJu3b1WeuofilXNiw22ZWvgFXIBB'
secretKey = '-6MUORuSGwy0So_l1GAxi9YTNnaHNlDjfd9rnClz'
# 上传的空间
space = 'hm-pic'
# 构建鉴权对象
q = Auth(accessKey, secretKey)
key = "myapp-python.png"
token = q.upload_token(space, key, 3600)
return render(request, 'myapp/welcome/hello.html', {'token': token})
应该是可以的
用pip install 安装一下