conda创建3.1虚拟环境
时间: 2023-11-20 08:58:59 浏览: 194
以下是使用conda创建Python 3.1虚拟环境的步骤:
1. 打开终端并输入以下命令来安装Miniconda(如果你已经安装了Miniconda,请跳过此步骤):
```shell
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash Miniconda3-latest-Linux-x86_64.sh
```
2. 创建一个名为“env3.1”的Python 3.1虚拟环境:
```shell
conda create --name env3.1 python=3.1
```
3. 激活虚拟环境:
```shell
conda activate env3.1
```
4. 现在你可以在这个虚拟环境中安装所需的包,例如:
```shell
conda install numpy
```
或者你也可以使用pip来安装包:
```shell
pip install pandas
```
5. 当你完成了虚拟环境中的工作后,可以使用以下命令来退出虚拟环境:
```shell
conda deactivate
```
阅读全文