随笔分类 - 安装配置
各种工具、软件、框架的安装配置使用流程
摘要:首先在官网上,根据cuda和torch查看对应的html网址。old torch版本。其次,分别安装以下包。 .conda/envs/gmne_dgl/bin/pip install --no-index torch-scatter -f https://pytorch-geometric.com/
阅读全文
摘要:下载插件 download 键入命令 打开windows的cmd(搜索框搜cmd,打开命令提示符),键入命令: btpair -u
阅读全文
摘要:知乎 cat /usr/local/cuda/version.txt # 显示结果:CUDA Version 10.0.130 # CUDA 10.0 conda install pytorch==1.2.0 torchvision==0.4.0 cudatoolkit=10.0 -c pytorc
阅读全文
摘要:查询cuda版本 cat /usr/local/cuda/version.txt 根据官网提示,用conda安装: conda create -n bartner python=3.7.4 conda activate bartner conda install pytorch==1.7.1 tor
阅读全文
摘要:CommandNotFoundError: Your shell has not been properly configured to use 'conda activate'. To initialize your shell, run $ conda init <SHELL_NAME> Cur
阅读全文
摘要:Windows 在 git bash下使用 conda 命令 安装git 安装连接:http://git-scm.com/download/linux (LINUX) https://git-scm.com/downloads (Windows) 安装后配置环境变量 我的电脑右键 → 属性 → 左边
阅读全文
摘要:解决windows10中ssh(OpenSSH_for_Windows)远程登录时报Permissions for "xxx" are too open错误 解决windows10中ssh(OpenSSH_for_Windows)远程登录主机时,报 Permissions for "xxx" are
阅读全文
摘要:新建会话tmux new -s my_session。 在 Tmux 窗口运行所需的程序。 按下快捷键Ctrl+b d将会话分离。 下次使用时,重新连接到会话tmux attach -t my_session。 重命名会话 $ tmux rename -t <old-name> <new-name>
阅读全文
摘要:jupyter notebook远程访问 在服务器上配置jupyter, 方便我们远程登录. 第一步:安装jupyter, pip3 install jupyter (此处使用的是python3) 第二步:生成配置文件jupyter notebook --generate-config 第三步:生成
阅读全文
摘要:安装nodejs https://nodejs.org/en/ 下载安装好,程序自动配置了环境变量。(配置环境变量其实就是把可执行文件所在的目录添加到系统可查到的变量中) 使用vscode的terminal 安装live-server 配置好vscode,使其具备python环境。(terminal
阅读全文
摘要:由于最近要使用Python操作MySQL数据库,所以要安装MySQLdb包。 手动安装 先去下载mysql-Python。(搜索Mysqlclient下面的,对应版本下载即可) 下载完成之后进入打开cmd,进入到下载包放入的Anaconda目录 cd C:\Users\MiMi Tian\Anaco
阅读全文
摘要:指定清华源: pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple conda 环境迁移 环境迁移 pip install conda-pack conda pack -n attnGAN 到/home
阅读全文