如何在虚拟机上下载python3.6.5
时间: 2023-03-13 11:28:47 浏览: 169
要在虚拟机上下载Python 3.6.5,首先需要确保虚拟机上已安装Python 3.6.5的安装程序,然后打开终端,输入以下命令:wget https://www.python.org/ftp/python/3.6.5/Python-3.6.5.tgz。这将下载Python 3.6.5的源代码文件。接下来,使用tar -xvf Python-3.6.5.tgz命令解压源代码文件,然后使用cd Python-3.6.5进入解压目录,最后使用./configure && make && make install命令安装Python 3.6.5.安装完成后,可以使用python3.6-m pip install <package>命令下载Python包。
阅读全文