在conda虚拟环境安装GIT并且克隆github上项目指南(解决443问题)

此次笔记记录自己在conda虚拟环境安装git,同时克隆github项目,并且解决了git的443问题。

如有不妥欢迎各位大佬批评指正。

首先默认你已经安装了anaconda。

代开命令提示行

配置环境

python 复制代码
#首先创建虚拟环境
conda create -n git_env python=3.8
#激活虚拟环境
conda activate git_env
#安装git
conda install git
#初始化全局配置信息
git config --global user.name "你的名字"
git config --global user.email "你的邮箱"
#安装torch1.11.0(版本之间是有严格依赖关系的,安装其他版本请查看官网)
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cudatoolkit=11.3 -c pytorch
#查看所有安装的包
conda list

安装Git

python 复制代码
git clone 你想要克隆的仓库路径

如何获取项目路径:打开github找到想克隆的项目→点击code->复制路径

解决443问题

报错信息:(git_env) C:\Users\93272>git clone https://github.com/google/prompt-to-prompt.git Cloning into 'prompt-to-prompt'... fatal: unable to access 'https://github.com/google/prompt-to-prompt.git/': Failed to connect to github.com port 443 after 21121 ms: Couldn't connect to server

出现此问题代表无法连接github(本人在科学上网的情况下仍然无法连接)

打开命令提示行

python 复制代码
#在命令提示行查看本机所有监听端口
netstat -ano | findstr "LISTENING"

尝试你的代理哪个能用(替换上面的http://127.0.0.1:7890),我尝试其中一个返回git网页得到html代码,说明连接没有问题。

找到可用代理后设置代理

python 复制代码
#配置代理
git config --global https.proxy socks5://127.0.0.1:7980
git config --global http.proxy socks5://127.0.0.1:7980
#查看本机代理
git config --global --get http.proxy
返回结果为:socks5://127.0.0.1:7980
#clone仓库代码
git clone https://github.com/google/prompt-to-prompt.git
成功克隆!

可通过git clone <仓库地址> D:/myproject自定义项目路径

相关推荐
寻月隐君8 小时前
Rust 实战:从零构建一个多线程 Web 服务器
后端·rust·github
草梅友仁9 小时前
草梅 Auth 1.3.0 发布与 GitHub 动态 | 2025 年第 32 周草梅周报
开源·github·ai编程
_poplar_9 小时前
09 【C++ 初阶】C/C++内存管理
c语言·开发语言·数据结构·c++·git·算法·stl
AI视觉网奇10 小时前
rebase 和pull的通俗区别是什么
git·团队开发
北'辰10 小时前
DeepSeek智能考试系统智能体
前端·后端·架构·开源·github·deepseek
我是哪吒12 小时前
分布式微服务系统架构第164集:架构懂了就来了解数据库存储扩展千亿读写
后端·面试·github
恋喵大鲤鱼13 小时前
git reset
git·reset
yeshan16 小时前
使用 iFLOW-CLI GitHub Action 和 Qwen3-Coder 给 GitHub 仓库生成幻灯片风格的文档站点
github·ai编程·掘金·金石计划
XujiRe16 小时前
解决在IDEA、webstorm里Git特别慢的问题
git·intellij-idea·webstorm
test_sy17 小时前
git命令详解
git