Django学习之路

安装

pip install Django==3.0.8

如之前存在如下问题:

WARNING: pip is being invoked by an old script wrapper. This will fail in a future version of pip. Please see https://github.com/pypa/pip/issues/5599 for advice on fixing the underlying issue. To avoid this problem you can invoke Python with '-m pip' instead of running pip directly. 

可以使用

python -m pip install Django==3.0.8

如图,说明安装成功

 

你可能感兴趣的:(python)