基于ubuntu安装python的虚拟环境
1、首先准备一个桌面版的ubuntu的虚拟机。
2、在虚拟机终端执行如下指令:
(1)sudo apt-get install build-essential
(2)sudo apt-get install gcc
3、下载并安装Miniconda3-latest-Linux-x86_64.sh
(1)先下载Miniconda3-latest-Linux-x86_64.sh,并剪切到ubuntu桌面
(2)然后在虚拟机终端执行如下指令:
指令1:sudo chmod 775 Miniconda3-latest-Linux-x86_64.sh
指令2: ./Miniconda3-latest-Linux-x86_64.sh
(3)重启终端,如果终端行开头出现(base)说明安装成功,如果没出现需要在重启终端,直到出现为止才算虚拟环境安装成功。
4、以上步骤不可以改变顺序
5、创建一个名为py-tensorflow的虚拟环境,这个可以随意起名字。指令为:conda create -n py-tensorflow python=3.7
6、每次使用时,切记激活虚拟环境。指令为conda activate py-tensorflow,其中 py-tensorflow是按照你自己创建的虚拟环境写。
虚拟环境搭建完毕,祝你成功。我是花哥。