/images/头像.jpeg

版本控制-git-个人笔记

git文档 配置代理 CSDN慕白Lee .gitconfig文件,放etc(全部用户生效)或者~(当前用户生效) 1 2 3 4 5 6 7 [http] proxy = 192.168.171.1:8888 [https] proxy = 192.168.171.1:8888 配

IDE-Vscode

vscode官网 vscode官方文档 概述 宇宙第一IDE 安装 直接去官网下载对应操作系统的安装程序直接安装 ubuntu安装使用命令 1 sudo apt install ./<file>.deb 用户

Python-Anaconda3

常用命令 conda环境管理 1 2 3 4 5 6 conda create -n xxx package #创建环境 conda activate xxx #激活环境 conda deactivate xxx #离开环境 conda env list #显示所有conda虚拟环境 conda env remove -n xxx #删除
 |