aria2 MacOS安装教程

2024-01-25 22:59
文章标签 安装 教程 macos aria2

本文主要是介绍aria2 MacOS安装教程,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

aria2 MacOS安装教程

使用homeBrew进行安装时报错

brew install aria2

系统更新之后没使用过 竟然报错了!

fatal: not in a git directory
Warning: No remote 'origin' in /opt/homebrew/Homebrew, skipping update!
Running `brew update --auto-update`...
==> Homebrew has enabled anonymous aggregate formula and cask analytics.
Read the analytics documentation (and how to opt-out) here:https://docs.brew.sh/Analytics
No analytics have been recorded yet (nor will be during this `brew` run).fatal: not in a git directory
Error: Command failed with exit 128: git
Error: aria2: unknown or unsupported macOS version: :dunno

brew doctor一下

Warning: Your Command Line Tools (CLT) does not support macOS 14.
It is either outdated or was modified.
Please update your Command Line Tools (CLT) or delete it if no updates are available.
Update them from Software Update in System Preferences.If that doesn't show you any updates, run:sudo rm -rf /Library/Developer/CommandLineToolssudo xcode-select --installAlternatively, manually download them from:https://developer.apple.com/download/all/.
You should download the Command Line Tools for Xcode 13.4.

发现 升级Sonoma之后还需要升级CLT

更新完CLT

bash

pkgutil --pkg-info=com.apple.pkg.CLTools_Executables

出现以下内容 安装成功

package-id: com.apple.pkg.CLTools_Executables
version: 15.0.0.0.1.1694021235
volume: /
location: /
install-time: 1701669565

brew doctor 报错


Warning: You have unlinked kegs in your Cellar.
Leaving kegs unlinked can lead to build-trouble and cause formulae that depend on
those kegs to fail to run properly once built. Run `brew link` on these:apr-utilaprWarning: Some installed formulae are not readable:apr-util: unknown or unsupported macOS version: :dunnogettext: unknown or unsupported macOS version: :dunnoapr: unknown or unsupported macOS version: :dunnosubversion: unknown or unsupported macOS version: :dunnoWarning: You are using macOS 14.
We do not provide support for this pre-release version.
It is expected behaviour that some formulae will fail to build in this pre-release version.
It is expected behaviour that Homebrew will be buggy and slow.
Do not create any issues about this on Homebrew's GitHub repositories.
Do not create any issues even if you think this message is unrelated.
Any opened issues will be immediately closed without response.
Do not ask for help from MacHomebrew on Twitter.
You may ask for help in Homebrew's discussions but are unlikely to receive a response.
Try to figure out the problem yourself and submit a fix as a pull request.
We will review it but may or may not accept it.

执行

cd "$(brew --repo)"
git fetch
git reset --hard origin/master
brew update
brew upgrade

配置文件

下载配置文件

链接:https://pan.quark.cn/s/7a103c26dfc3
提取码:vxFq

在终端中执行

cd ~
mkdir .aria2
cd .aria2
pwd

打开访达 command+shift+G 将pwd结果复制进去 进入aria2

将下载的三个配置文件复制进去

把aria2.config文件中文件目录替换成当前目录 其他配置酌情修改

启动命令

aria2c --conf-path="/Users/xxxx(你的用户名)/.aria2/aria2.conf"

常驻后台运行

aria2c --conf-path="/Users/ballen/.aria2/aria2.conf" -D

下载插件

Camtd

比较好用的插件,界面美观,可惜chrome商店已下架,并且github中下载crx文件也无法启动

附上传送门

Chrome商店地址: https://chrome.google.com/webstore/detail/camtd-aria2-download-mana/lcfobgbcebdnnppciffalfndpdfeence?utm_source=chrome-ntp-iconGithub release:https://github.com/jae-jae/Camtd/releases

YAAW for Chrome

这里用了另一款平替,界面比较简陋,不过功能类似

简单配置PRC地址即可

附上传送门

Chrome商店地址:https://chrome.google.com/webstore/detail/dennnbdlpgjgbcjfgaohdahloollfgoc
Github地址:https://github.com/acgotaku/YAAW-for-Chrome

油猴

Chrome商店

下载红色版本才能解锁变态功能

https://chrome.google.com/webstore/detail/gcalenpjmijncebpfijmoaglllgpjagf

大名鼎鼎的GreasyFork 直接找你想要的网盘下载插件即可 非常多

https://greasyfork.org/zh-CN

想要把速度拉满还是得开会员!

这篇关于aria2 MacOS安装教程的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/644895

相关文章

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

mac安装redis全过程

《mac安装redis全过程》文章内容主要介绍了如何从官网下载指定版本的Redis,以及如何在自定义目录下安装和启动Redis,还提到了如何修改Redis的密码和配置文件,以及使用RedisInsig... 目录MAC安装Redis安装启动redis 配置redis 常用命令总结mac安装redis官网下

使用Nginx来共享文件的详细教程

《使用Nginx来共享文件的详细教程》有时我们想共享电脑上的某些文件,一个比较方便的做法是,开一个HTTP服务,指向文件所在的目录,这次我们用nginx来实现这个需求,本文将通过代码示例一步步教你使用... 在本教程中,我们将向您展示如何使用开源 Web 服务器 Nginx 设置文件共享服务器步骤 0 —

Golang使用minio替代文件系统的实战教程

《Golang使用minio替代文件系统的实战教程》本文讨论项目开发中直接文件系统的限制或不足,接着介绍Minio对象存储的优势,同时给出Golang的实际示例代码,包括初始化客户端、读取minio对... 目录文件系统 vs Minio文件系统不足:对象存储:miniogolang连接Minio配置Min

手把手教你idea中创建一个javaweb(webapp)项目详细图文教程

《手把手教你idea中创建一个javaweb(webapp)项目详细图文教程》:本文主要介绍如何使用IntelliJIDEA创建一个Maven项目,并配置Tomcat服务器进行运行,过程包括创建... 1.启动idea2.创建项目模板点击项目-新建项目-选择maven,显示如下页面输入项目名称,选择

如何安装 Ubuntu 24.04 LTS 桌面版或服务器? Ubuntu安装指南

《如何安装Ubuntu24.04LTS桌面版或服务器?Ubuntu安装指南》对于我们程序员来说,有一个好用的操作系统、好的编程环境也是很重要,如何安装Ubuntu24.04LTS桌面... Ubuntu 24.04 LTS,代号 Noble NumBAT,于 2024 年 4 月 25 日正式发布,引入了众

如何安装HWE内核? Ubuntu安装hwe内核解决硬件太新的问题

《如何安装HWE内核?Ubuntu安装hwe内核解决硬件太新的问题》今天的主角就是hwe内核(hardwareenablementkernel),一般安装的Ubuntu都是初始内核,不能很好地支... 对于追求系统稳定性,又想充分利用最新硬件特性的 Ubuntu 用户来说,HWEXBQgUbdlna(Har

Python基于火山引擎豆包大模型搭建QQ机器人详细教程(2024年最新)

《Python基于火山引擎豆包大模型搭建QQ机器人详细教程(2024年最新)》:本文主要介绍Python基于火山引擎豆包大模型搭建QQ机器人详细的相关资料,包括开通模型、配置APIKEY鉴权和SD... 目录豆包大模型概述开通模型付费安装 SDK 环境配置 API KEY 鉴权Ark 模型接口Prompt

在 VSCode 中配置 C++ 开发环境的详细教程

《在VSCode中配置C++开发环境的详细教程》本文详细介绍了如何在VisualStudioCode(VSCode)中配置C++开发环境,包括安装必要的工具、配置编译器、设置调试环境等步骤,通... 目录如何在 VSCode 中配置 C++ 开发环境:详细教程1. 什么是 VSCode?2. 安装 VSCo

python中poetry安装依赖

《python中poetry安装依赖》本文主要介绍了Poetry工具及其在Python项目中的安装和使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随... 目录前言1. 为什么pip install poetry 会造成依赖冲突1.1 全局环境依赖混淆:1