在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自定义项目路径

相关推荐
远航_4 小时前
git submodule
前端·后端·github
fthux5 小时前
如果你用 Mac,那你可能需要 Noti Shift
macos·开源·github
程序员天天困1 天前
Loop Engineering 实战:/goal 命令让 AI 自己写完整项目
github
徐小夕1 天前
我们开源了一款“框架无关”的思维导图编辑器,3分钟集成到任意系统
前端·javascript·github
小爷毛毛_卓寿杰1 天前
我把 397B 的「Agentic 大脑」塞进了 Xinference,一键部署 Nex-N2
人工智能·架构·github
小爷毛毛_卓寿杰1 天前
我把一个 3B 模型塞进了 Xinference,然后它干掉了 DeepSeek V3.2
人工智能·开源·github
凌奕1 天前
别用文档约束你的 Agent:聊聊 Agent 开发流程的思想
llm·github·agent
和你看星星1 天前
Git rerere:让重复冲突只解决一次
git
HelloGitHub1 天前
《HelloGitHub》第 123 期
开源·github
逛逛GitHub2 天前
这个 GitHub 有意思啊,Claude Code + Obsidian = 知识库王炸。
github