Package 'rpix'

Title: R package to manage dependencies with pixi
Description: More about what it does (maybe more than one line) Use four spaces when indenting paragraphs within the Description.
Authors: Mikkel Roald-Arbøl
Maintainer: Mikkel Roald-Arbøl <[email protected]>
License: MIT + file LICENSE
Version: 0.1.0
Built: 2025-03-19 05:03:07 UTC
Source: https://github.com/roaldarbol/rpix

Help Index


Add dependencies

Description

add() will add dependencies to the pixi.toml. It will only add if the package with its version constraint is able to work with rest of the dependencies in the project. More info on multi-platform configuration.

Usage

add(package_names)

Arguments

package_names

Package name(s) to be added.

Value

Doesn't return any objects.

Examples

## Not run: 
add("tibble")

## End(Not run)

Create a new pixi project

Description

init() initializes a pixi.toml file and also prepares a .gitignore to prevent the environment from being added to git.

Usage

init()

Value

Doesn't return any objects.


Check pixi installation

Description

Tests whether pixi is installed on the system

Usage

pixi_installed()

Value

Doesn't return any objects.


Remove dependencies

Description

remove() will add dependencies to the pixi.toml. It will only remove if the package with its version constraint is able to work with rest of the dependencies in the project. More info on multi-platform configuration.

Usage

remove(package_names)

Arguments

package_names

Package name(s) to be removed.

Value

Doesn't return any objects.

Examples

## Not run: 
remove("tibble")

## End(Not run)