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

相关推荐
闲云一鹤5 小时前
Git LFS 扫盲教程 - 你不会还在用 Git 管理大文件吧?
前端·git·前端工程化
砖厂小工8 小时前
用 GLM + OpenClaw 打造你的 AI PR Review Agent — 让龙虾帮你审代码
android·github
程序员鱼皮9 小时前
又一个新项目完结,我要出海了!
ai·github·开源项目
徐小夕9 小时前
pxcharts-vue:一款专为 Vue3 打造的开源多维表格解决方案
前端·vue.js·github
Moment10 小时前
想要长期陪伴你的助理?先从部署一个 OpenClaw 开始 😍😍😍
前端·后端·github
我叫黑大帅10 小时前
前端如何利用 GitHub Actions 自动构建并发布到 GitHub Pages?
前端·面试·github
HelloGitHub12 小时前
这个年轻的开源项目,想让每个人都能拥有自己的专业级 AI 智能体
开源·github·agent
刘发财18 小时前
弃用html2pdf.js,这个html转pdf方案能力是它的几十倍
前端·javascript·github
sunny8651 天前
Claude Code 跨会话上下文恢复:从 8 次纠正到 0 次的工程实践
人工智能·开源·github