#package_manager
Explore tagged Tumblr posts
Link
This article reviews what Helm is and when to use it to help manage your CI/CD pipelines.
0 notes
Text
Apple - Using pip vs. MacPorts for installing Python packages
Apple - Using pip vs. MacPorts for installing Python packages
You should use pip because it's the Python-native tool for managing package installations but you shouldn't pip-install things into your base Python installation. It can be a mess to have to sort out fixed version dependencies between multiple software repositories if you're pip-installing everything into your base Python installation on your machine.
https://telcode.net/p27/apple-using-pip-vs-macports-for-installing-python-packages
0 notes
Text
Snap Package Manager of Linux
https://en.wikipedia.org/wiki/Snap_(package_manager) The Snap Package Manager was developed by Canonical Ltd., the organization behind Ubuntu, targeted for the universal Linux distributions. It seems already accepted as a new standard in linux world, It would accelerate the software publish process for Linux distributions. And it’s open sourced of course: https://github.com/snapcore/snapd
2 notes
·
View notes
Text
pip a python package manager
> Install package
pip install ≤package≥
> Uninstall package
`pip uninstall
0 notes
Text
pacman の使い方
概要
pacman は Arch Linux のデフォルトのパッケージマネージャーです。 ええ。 とりあえず、-S と -Ss と -Syu は覚えて帰って行ってください。
日常で使えるオプション
pacman はサブコマンドを使わず、大文字アルファベット 1 字オプションに小文字アルファベット複数を使っています。 なので、今まで apt 系を使っていた私みたいな人にとっては少しとっつきにくいかもしれません。 私はとっつきにかったので、パッケージの検索すら分かりませんでした。
-S(はいふんえす)
-S はインストール用のオプションです。
% sudo pacman -S base-devel
こんな風に使います。 apt-get install と同じです。 sudo 必須です。
-Ss(はいふんびっぐえすえす)
-Ss はリモートから指定されたパッケージを検索するオプションです。
% pacman -Ss eclipse
こんな風に使います。 apt-cache search と同じです。 -Qs はインストール済みのパッケージを検索するオプションなので、間違えないようにしてください。
-Syu(はいふんしゅー)
-Syu はパッケージリポジトリを更新し、パッケージの更新があったらすかさずアップグレードするオプションです。 これも sudo 必須です。
% sudo pacman -Syu
こんな風に使います。
0 notes
Link
APT (Advanced Package Tool) is an accessible software user interface that works with core libraries to handle the installation and removal of software on Debian, Ubuntu, and other Linux distributions. Apt provides a simple, safe, and efficient way of managing software. APT simplifies managing software on Linux systems by automating the retrieval, configuration, and installation of software packages. This article introduces a new front-end for apt called Nala, which has many new features.
0 notes
Text
yolk and python packages
yolk is a viewer for packages installed on a system
Good to find the packages installed into a virtualenv
> Install
sudo pip yolk
> List packages
yolk --list
0 notes