一、PyCharm

  1. Win10环境设置Pycharm terminal 为 powershell
    • 管理员模式运行PowerShell
    • conda init powershell
    • Set-ExecutionPolicy RemoteSigned 的安全策略

    参考资料

二、Git

  1. 户名是abc@qq.com,密码是abc123456,git地址为git@xxx.com/www.git
    • git clone http://abc@qq.com:abc123456@git.xxx.com/www.git
    • 注意:@用#40替换
    • 参考这儿
  2. 配置ssh
    • git安装完成后,ssh-keygen -t rsa -C 邮箱地址
    • github添加ssh,将下图文件中字符加入github即可
      image
  3. 建议选择方法二

三、Anaconda

  1. 设置镜像
    • conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
    • conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
    • conda config --set show_channel_urls yes
  2. 创建删除环境
    • conda create -n xxx python=python_version
    • conda remove -n xxx --all
  3. 激活关闭环境
    • conda env list
    • conda activate env_name
    • conda deactivate