Ubuntn下Django开发问题总汇(不定期更新)
Posted wowiwf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntn下Django开发问题总汇(不定期更新)相关的知识,希望对你有一定的参考价值。
1、使用:sudo apt-get update ,错误描述:E: Repository ‘http://dl.google.com/linux/chrome/deb stable Release‘ changed its ‘Origin‘ value from ‘Google, Inc.‘ to ‘Google LLC‘
N: This must be accepted explicitly before updates for this repository can be applied. See apt-secure(8) manpage for details.
解决:改用 sudo apt update
2、pip ,错误描述:Traceback (most recent call last): File "/usr/local/bin/pip", line 7, in <module> from pip._internal import main ModuleNotFoundError: No module named ‘pip._internal‘
解决:$: wget https://bootstrap.pypa.io/get-pip.py --no-check-certificate 或者 curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$: 接着运行命令,给python2安装pip,命令:python get-pip.py; 给python3 安装 pip3 ,命令:python3 get-pip.py
以上是关于Ubuntn下Django开发问题总汇(不定期更新)的主要内容,如果未能解决你的问题,请参考以下文章
Django celery 定期任务间隔更改未在数据库中更新