windows下关于python的一些基本操作

mac2022-06-30  108

python环境的一些操作总结

anaconda中关于虚拟环境的操作

1.创建虚拟环境 conda create -n name python=3.6 2.删除虚拟环境 conda remove -n name --all 3.激活虚拟环境 activate name 4.退出虚拟环境 deactivate 5.查看当前的虚拟环境 conda info -e 6.安装jupyter,具体操作略过 pip install jupyter 7.安装ipykernel,添加kernel pip install ipykernel python -m ipykernel install --user --name ‘name’–display-name ‘name’ 详细链接 https://github.com/ipython/ipython/blob/7c12b021ee7bdcaf8cec814a624203d8e74aab08/docs/source/install/kernel_install.rst#kernels-for-different-environments

删除Anaconda源,还原为默认的

如果添加的镜像有错误或者想还原成默认的镜像源: conda config --remove-key channels

添加清华镜像库

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 --set show_channel_urls yes

python环境安装

1.windows下安装python环境 https://www.python.org/downloads/windows/ 2.选择合适的版本 3.安装python版本 4.选择合适的路径 5.验证安装 成功

安装virtualenv

安装virtualenv 管理虚拟环境的工具,避免各个工具包发生冲突 创建一个工作环境 mkdir pyenv 切换路径 激活虚拟环境 安装tensorflow

最新回复(0)