
软件管理相关
xLyons
小小研究生一枚,研究方向为推荐系统...
展开
-
git添加多个公钥(gitee/github通用)
git添加多个公钥原创 2022-08-03 02:01:54 · 1073 阅读 · 1 评论 -
Git 使用笔记
配置用户信息# 设置 local 用户信息git config --local user.name tangxingit config --local user.email xxintang@qq.com# 设置 global 用户信息git config --global user.name tangxingit config --global user.email xxintang@qq.com设置远程库# 删除名为 origin 的远程库git remote rm or.原创 2022-05-12 18:27:31 · 259 阅读 · 0 评论 -
软件安装教程相关链接
HomebrewHomebrew国内如何自动安装NPSNPS教程Windows Terminalhttps://blog.youkuaiyun.com/xuehu96/article/details/99290589https://www.chuchur.com/article/windows-terminal-beautifyhttps://walterlv.blog.youkuaiyun.com/article/details/100159481原创 2022-04-12 14:43:10 · 190 阅读 · 0 评论 -
Conda安装不同的虚拟环境
1. 安装TensorFlow2.x1.1 conda创建环境conda create -n tensorflow2 python=3.9conda activate tensorflow2# 删除环境conda remove -n tensorflow2 --all1.2 安装package# 前提:安装好CUDA11.2和cuDNN8.1pip install tensorflow-gpu=2.6# 安装常用包conda install tqdmconda install n原创 2022-01-24 23:06:32 · 1312 阅读 · 0 评论 -
Win10下,记录TensorFlow及Keras安装全过程
# 创建环境conda create -n tensorflow1.14 python=3.6# 激活环境conda activate tensorflow1.14# 更新pippython -m pip install --upgrade pip -i https://pypi.mirrors.ustc.edu.cn/simple/# 安装tensflow1.14pip install -i https://mirrors.aliyun.com/pypi/simple/ tensorf原创 2021-04-15 19:07:02 · 924 阅读 · 0 评论 -
conda个人常用命令
更新相关命令conda update condaconda update anacondaconda update --allconda update anaconda-navigatorconda update -n base conda conda环境相关命令conda create -n env_name python=3.7 #创建python版本3.7,名字为env_name虚拟环境conda remove -n env_name --all #删原创 2021-01-17 13:09:41 · 423 阅读 · 2 评论