一、PyCharm
- Win10环境设置Pycharm terminal 为 powershell
- 管理员模式运行PowerShell
conda init powershell
Set-ExecutionPolicy RemoteSigned
的安全策略
参考资料
二、Git
- 户名是abc@qq.com,密码是abc123456,git地址为git@xxx.com/www.git
git clone http://abc@qq.com:abc123456@git.xxx.com/www.git
- 注意:@用
#40
替换 - 参考这儿
- 配置ssh
- git安装完成后,
ssh-keygen -t rsa -C 邮箱地址
- github添加ssh,将下图文件中字符加入github即可
- git安装完成后,
- 建议选择方法二
三、Anaconda
- 设置镜像
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
- 创建删除环境
conda create -n xxx python=python_version
conda remove -n xxx --all
- 激活关闭环境
conda env list
conda activate env_name
conda deactivate
------友天下士,读古今书!