Conda虚拟环境及常用指令

ASUS本机环境

pytorch win

Anaconda 3 版本5.1.0

Python 3.6.4

Pytorch-cpu-1.1.0-py3.6

=============================

查看虚拟工作空间

conda info --envs

conda info -e

查看安装的软件

conda list

conda install pyodbc=4.0.27

conda search numpy

软件源路径

C:\Users\yaked19\.condarc

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/Paddle/

conda config --set show_channel_urls yes

创建虚拟工作空间workspace(利用指定的python版本)

conda create --name paddle python=3.6

或conda create -n paddle python=3.6

删除利用命令

conda remove -n paddle --all

重命名

conda create --name 新环境名称 --clone 旧环境名称

 

activate paddle

deactivate

卸载

卸载PaddlePaddle:

CPU版本的PaddlePaddle: python -m pip uninstall paddlepaddle 或 python3 -m pip uninstall paddlepaddle

 

使用conda remove -n paddle--all  删除环境时,发现如下错误:

PackagesNotFoundError: The following packages are missing from the target environment:

解决方案:conda env remove -n paddle(要移除的环境名称)

==================================

Pytorch测试

from __future__ import print_function

import torch

x = torch.rand(5, 3)

print(x)

测试支不支持GPU加速

import torch

torch.cuda.is_available()

 

 

你可能感兴趣的:(TensorFlow,Python)