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 |
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.
add(package_names)
add(package_names)
package_names |
Package name(s) to be added. |
Doesn't return any objects.
## Not run: add("tibble") ## End(Not run)
## Not run: add("tibble") ## End(Not run)
pixi
projectinit()
initializes a pixi.toml file and also prepares a .gitignore to prevent the
environment from being added to git.
init()
init()
Doesn't return any objects.
Tests whether pixi is installed on the system
pixi_installed()
pixi_installed()
Doesn't return any objects.
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.
remove(package_names)
remove(package_names)
package_names |
Package name(s) to be removed. |
Doesn't return any objects.
## Not run: remove("tibble") ## End(Not run)
## Not run: remove("tibble") ## End(Not run)
Search a package, output will list the latest version of the package.
search(package_name = NULL)
search(package_name = NULL)
package_name |
Package name to be added. |