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

相关推荐
洛菡夕18 小时前
NoSQL之Redis配置与优化
redis·git·nosql
wohehe19 小时前
Android项目工程化-Github Actions
linux·github
Yunzenn19 小时前
CRAG 架构与置信度路由
github
Techblog of HaoWANG1 天前
目标检测与跟踪(16)-- Ubuntu 20.04 下 ROS1 + Conda 虚拟环境开机自启动方案(兼容 ROS2 共存)
人工智能·目标检测·ubuntu·机器人·视觉检测·conda·控制
逛逛GitHub1 天前
YC 总裁开源了自己亲手写的 AI Agent 大脑,1 周就 1 万点赞。
github
游九尘1 天前
git只忽略自己本地的文件,其他人的文件正常提交
git
SiYuanFeng1 天前
新手学Git:以一个小游戏项目为例,完成初始化、提交、查看历史与恢复版本
大数据·git·elasticsearch
CoderJia程序员甲1 天前
GitHub 热榜项目 - 日榜(2026-04-21)
ai·大模型·llm·github·ai教程
Garfield20051 天前
基于 GitHub 开源项目二次开发:Upstream 同步、Merge / Rebase 边界与实践
开源·github
rayyy91 天前
Git 忽略已提交过的文件夹 完整步骤
git