在windows不联网环境中,如何在Python里安装Django?
在一台联网的电脑上把django和它的依赖库全部安装到一个虚拟环境中运行 pip freeze > requirements.txt 命令将所有已安装的库和它们的版本记录到requirements.txt这个文件中用 pip wheel -r requirements.txt 这个命令根据requirements.txt创建wheelhouse 文件夹将这个文件夹拷贝到你需要不联网安装django的电脑上创建一个虚拟环境并且运行 pip install wheelhouse/* 这个命令