下载最新版Anaconda、安装、更换源、配置虚拟环境并在vscode中使用

文章目录

进入官网

https://repo.anaconda.com/

或进入清华大学下载
https://mirrors.tuna.tsinghua.edu.cn/anaconda/archive/

进入下载页

安装




更换源

  1. 查看已经存在的镜像源

    bash
    conda config --show channels

  1. 添加清华大学镜像源
bash 复制代码
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/r
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/msys2
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch

Anaconda 仓库与第三方源(conda-forge、msys2、pytorch等)的镜像,各系统都可以通过修改用户目录下的 .condarc 文件。Windows 用户无法直接创建名为 .condarc 的文件,可先执行 conda config --set show_channel_urls yes 生成该文件之后再修改。

  1. 设置搜索时显示通道地址
bash 复制代码
conda config --set show_channel_urls yes
  1. 删除已经存在的镜像源
bash 复制代码
conda config --remove-key channels

配置虚拟环境env


![在这里插入图片描述](https://i-blog.csdnimg.cn/direct/7ccc81aec23d47ceb416ff34af35cb17.png#pic_center =500x

安装包requests


在vscode中使用虚拟环境

相关推荐
阿乾之铭5 分钟前
通过Django 与 PostgreSQL 进行WEB开发详细流程
python·postgresql·django
疯一样的码农12 分钟前
Python 多线程
开发语言·python
chusheng184016 分钟前
Python 爬取大量数据如何并发抓取与性能优化
开发语言·python·性能优化
计算机学姐27 分钟前
基于Python的影院电影购票系统
开发语言·vue.js·后端·python·mysql·pycharm·pip
satadriver28 分钟前
makefile例子
linux
EricWang135828 分钟前
[OS] 项目3入手
java·linux·前端
Kalika0-033 分钟前
Linux 文件基本属性
linux·运维·服务器·学习
乐茵安全1 小时前
linux基础
linux·运维·服务器·网络·安全·网络安全
写代码的学渣1 小时前
Linux SSH免密登入以及配置脚本
linux·运维
独行soc1 小时前
#渗透测试#SRC漏洞挖掘# 操作系统-Linux系统基础04之内存管理
linux·运维·服务器·安全·自动化