1.首先说明一下我的安装情况: (1)Window10系统 (2)Anaconda安装在C盘 2.由于Anaconda安装在C盘经常会涉及权限问题,在安装torch的时候让我萌发了转移磁盘的想法(拒绝我的pip install,理由也很简单,说我没有权限..) 报错内容:EnvironmnetNotWriteableError: The current user does not have write permissions to the target environment. 尝试未成功:一开
https://blog.csdn.net/sinat_23880167/article/details/78502528 1. 在git中通过命令: $ ssh-keygen Generating public/private rsa key pair. Enter file in which to save the key (/c/Users/NorthK_PC/.ssh/id_rsa): /c/Users/NorthK_PC/.ssh/id_rsa already exists. Over
最近需要使用统计一个目录下的所有文件,使用python比较方便,就整理了一下代码. import os def gci(filepath): files = os.listdir(filepath) for fi in files: fi_d = os.path.join(filepath,fi) if os.path.isdir(fi_d): gci(fi_d) else: str = os.path.join(filepath,fi_d)+'\n' suffix = str[-5:] pri