https://gitlab.com/volian/nala/-/wikis/Installation
Installation
Debian Testing/Sid
Nala is officially in the testing and sid repos.
sudo apt install nala
Volian Scar
Alternatively you can use the Volian Scar repo.
Updates from this repo are slightly faster than the Debian repos, but usually only about a day sooner.
Install the Repository and Keyring
Head over to The Volian Archive Release Page
Download the following packages:
- volian-archive-keyring_0.1.0_all.deb
- volian-archive-nala_0.1.0_all.deb or volian-archive-scar_0.1.0_all.deb
Note, for Ubuntu 21.04 / Debian 11 you may want volian-archive-scar_0.1.0_all.deb
volian-archive-scar will allow newer dependencies to be installed so that Nala will work. This could have unintended consequences as the packages, and Nala are not developed for these releases.
Install the archive packages:
sudo apt install ./volian-archive*.deb
If you experience issues with the repository see Troubleshooting
Source Repo
This step is optional, but if you want to add the source repo.
echo "deb-src https://deb.volian.org/volian/ scar main" | sudo tee -a /etc/apt/sources.list.d/volian-archive-scar-unstable.list
Ubuntu 22.04
After the repository and key are installed simply run
sudo apt update && sudo apt install nala
Ubuntu 18.04 / Debian Buster and older
Unfortunately Nala will not work on these releases or older.
The python versions are too old, and they don't have the required packages.
Having said that you may be able to look further below and install from source. These distros will not be officially supported.
Pacstall
Alternatively we maintain a pacscript for Pacstall.
If you haven't already, install Pacstall.
Once that is complete all you have to do is run
pacstall -I nala-deb
Local .deb
You can also choose to download our .deb and install it locally through apt or dpkg.
To download the package you can head over to our Releases page.
From there you can run the command below to install nala.
sudo apt install /path/to/nala_version_arch.deb
Installing From Source
There are 2 choices to make on what source to install from
Main Branch. This may be ahead of the current release.
Main Branch, but targeting a specific version.
The first step is to clone the repository. Make sure the following build depends are installed.
sudo apt install git python3-apt python3-debian pandoc -y
Clone Main
git clone https://gitlab.com/volian/nala.git
cd nala/
Clone Specific Release
git clone --branch=v0.12.1 https://gitlab.com/volian/nala.git
cd nala/
Ubuntu 22.04 / Debian Stable/Testing/Sid
sudo make install
Ubuntu 20.04 / Debian Buster
And maybe older releases
The following commands will all install Nala with pip, along with the man pages, translations, shell completions and configuration file.
Nala requires python3.9+, which these distros do not have.
This method will install python3.10 from source, as that's the version Nala is developed with
Before continuing you will need the following additional build depends
sudo apt-get install -y wget build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev libbz2-dev
Now you can get to building and installing Nala!
sudo make legacy
After this is installed, anytime you want to update, we provide a command that will skip building python.
sudo make legacy-update
Uninstalling
sudo make uninstall
If you build the legacy way
sudo make uninstall-legacy
That's it! we hope you enjoy using Nala!
https://gitlab.com/volian/nala/-/wikis/Installation的更多相关文章
- Mac神器Iterm2的Shell Integration的用法和注意事项
在iterm2 v3.0版本中有了个新的feature——Shell Integration,其中比较重要的功能就是可以取代传统的“rz”.“sz”(即:向服务器上传.下载文件) 具体的用法可以参见官 ...
- android dm-verity 功能【转】
转自:https://blog.csdn.net/ee230/article/details/73348344 Android dm-verity 实现原理深入研究 思维导图: dm-verity 说 ...
- 免费ss账号网站
下面网址按排序顺序优先使用,数字越小优先级越高 1,https://io.freess.today/ 2,https://free-ss.site/ 3,https://ss.freess.org/ ...
- Unity3d游戏地图生成器MapMagic World Generator v1.9.1
Unity3d MapMagic World Generator基于节点的程序和无限游戏地图生成器,图形上的每个节点表示地形或对象生成器:噪声,voronoi,混合,曲线,侵蚀,散射,森林等生态系统, ...
- 免费s账号网站
下面网址按排序顺序优先使用,数字越小优先级越高 1,https://io.freess.today/ 2,https://free-ss.site/ 3,https://ss.freess.org/ ...
- macos Item2 添加 Shell Integration (ftp传输)
macos系统 的item2软件 的 Shell Integration (ftp传输) 功能强大,无需 安装其他ftp软件,也是为了保证 密码安全 在使用时报错如下(因为本地 ping不通): ...
- 简单谈谈网络抓包,特别是thrift 接口
按照惯例先谈谈最近情况,最近不是刚好跨年吗?看到很多人都在写年度总结,所以我也在写年度总结文章(其实之前我基本没有写过的,今年有点感触,也想记录一下),结果发现写起来有点多,之前还想着元旦前发出来,结 ...
- gitlab https
https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/install/installation.md#using-https https:// ...
- CentOS 7.x上gitlab搭建教程(https可用,邮件可用)
目录 知识要求 搭建感想 搭建过程 参考 知识要求: nginx基础知识 搭建感想 注:以下是我搭建gitlab时的思考,需要nginx的基础知识,Docker的基础知识才容易理解,与下面的搭建过程是 ...
- gitlab启用https的配置
vim /etc/gitlab/gitlab.rb external_url 'https://101.101.101.63' #启用https,默认是http (改端口:external_ur ...
随机推荐
- 28. 找出字符串中第一个匹配项的下标 Golang实现
题目描述: 给你两个字符串 haystack 和 needle ,请你在 haystack 字符串中找出 needle 字符串的第一个匹配项的下标(下标从 0 开始).如果 needle 不是 hay ...
- DOMException: Failed to execute 'setRequestHeader' on 'XMLHttpRequest': 'function (header, parser) { header = normalizeHeader(header);
场景:token过期,然后更新了token 重新发起请求获取数据 : 代码:使用上一次的错误请求配置报错 return request(error.config) : 解决 : return ...
- 云原生爱好者周刊:OCI 镜像管理新工具 — regclient
云原生一周动态要闻: OpenKruise v1.0 发布 SlashData 最新报告:560 万开发者使用 Kubernetes,一年增长 67% WasmEdge 0.9.0 发布 Securi ...
- ArgoWorkflow教程(七)---高效的步骤间文件共享策略
之前我们分析了使用 artifact 实现步骤间文件共享,今天分享一下如何使用 PVC 实现高效的步骤间文件共享. 1. 概述 之前在 artifact 篇我们演示了如何使用 artifact 实现步 ...
- Web渗透03_扫描技术
前言 在获取目标主机的各类信息时,有一些综合工具可以一键扫描完成,大大方便了测试效率.但扫描结果并非100%的正确,需要我们的判断. namp NMAP(Network Mapper)是一款开放源代码 ...
- WSGI、mini-web框架
阅读目录: 1.服务器动态资源请求 2.应用程序示例 3.Web 动态服务器 4.mini-web框架-1-文件结构 5.mini-web框架-2-显示页面 6.mini-web框架-3-替换模板 一 ...
- Nuxt.js 应用中的 pages:extend 事件钩子详解
title: Nuxt.js 应用中的 pages:extend 事件钩子详解 date: 2024/10/25 updated: 2024/10/25 author: cmdragon excerp ...
- Windows 11安装跳过联网
方案1 在选择WIFI联网的界面,不要连接网络. Shift + F10(或者Fn+Shift+F10),打开cmd窗口,输入命令:oobe\BypassNRO.cmd 重启后会有一个我没有互联网的选 ...
- CentOS_7安装docker
CentOS_7安装docker Install Docker Engine on CentOS 官网文档:https://docs.docker.com/engine/install/centos/ ...
- Promise 简单实例一枚
<script> function t(){ return new Promise((resolve, reject)=>{ setTimeout(()=>{ resolve( ...