摘要:
本人博客搬迁至 新博客地址,欢迎关注 阅读全文
摘要:
当前的channels无法用conda安装某些包,查找适合的channel安装 anaconda search -t conda visdom conda install -c https://conda.anaconda.org/conda-forge visdom 阅读全文
摘要:
安装了torchnet无法import pip install git+https://github.com/pytorch/tnt.git@master 阅读全文
摘要:
Linux conda安装pytorch速度慢 1. 添加源 conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ conda config --add channels ht 阅读全文
摘要:
Linux pip安装速度慢(超时报错),为pip换源 mkdir -p ~/.pip/ vim pip.conf pip.conf中内容如下: [global] index-url=http://mirrors.aliyun.com/pypi/simple/ [install] trusted-h 阅读全文
摘要:
linux安装conda并创建虚拟环境 1. 下载安装脚本 地址:https://repo.anaconda.com/archive/index.html 选择:Anaconda3-2020.07-Linux-x86_64.sh 2. 运行安装脚本 执行bash [Anaconda3-2020.07 阅读全文
摘要:
python numpy.arry, pytorch.Tensor及原生list相互转换 1 原生list转numpy list my_list = np.ndarray(my_list) 2 numpy.array 转原生list my_list = my_list.tolist() 3 nump 阅读全文
摘要:
conda 安装GPU版tensorflow conda create -n tensorflow python=3.6 conda activate tensorflow conda install tensorflow-gpu 阅读全文
摘要:
以conda下安装jieba为例: 运行命令 conda install jieba 若无法正确安装,需要找到包对应的模块 anaconda search -t conda jieba 找到对应的版本 找到下载通道 anaconda show conda-forge/jieba3k 复制最后一行进行 阅读全文
摘要:
latex在使用WinEdt10.2写带有中文注释的matlab公式时,会报错: 使用方式为: \usepackage{listings} % 插入代码要用的包 \begin{document} \begin{lstlisting}[language=Matlab] %读取训练数据并拼接 % bat 阅读全文