随笔--ubuntu安装clip网络原因手动安装

文章目录

  • 官方安装步骤
  • 手动安装

官方安装步骤

# 安装pytorch(1.7.0以上)
pip install ftfy regex tqdm
pip install git+https://github.com/openai/CLIP.git

手动安装

# 1 安装依赖
pip install ftfy regex tqdm --default-timeout=100 -i https://pypi.tuna.tsinghua.edu.cn/simple
# 2 在https://github.com/openai/CLIP.git手动下载zip包
# 3 解压zip
unzip CLIP-main.zip
# 4 进入解压目录
cd CLIP-main
# 5 执行安装命令
python3 setup.py build install
# 安装成功

你可能感兴趣的:(安装部署,ubuntu,linux,运维)