<aside> <img src="/icons/info-alternate_blue.svg" alt="/icons/info-alternate_blue.svg" width="40px" />
👋 Hey there! This feature is under active development! This guide will walk you through how to use Renku’s environment customization functionality, and show you workarounds for the spots where we haven’t finished building the features yet.
</aside>
Choose your language:
Renku can build an environment based on a Python dependencies file for you (no knowledge of Docker required)!
To get started, see How to create a custom environment from a code repository.
Add packages to your project dependencies
To add packages to your environment, add the packages to the dependencies file:Â install.R
.
To specify your project dependencies in install.R
, write the R package install commands.
Note that the base RÂ install.packages
 function can only install the latest version of a package on CRAN. To install a specific version, use devtools::install_version
. If the package is not on CRAN and exists as a github repo, you can use install_github
 instead. These two scenarios are shown in the example below.
devtools::install_version("ggplot2",
version = "3.3.6",
repos = "<http://cran.us.r-project.org>",
upgrade="always")
devtools::install_github("thomasp85/patchwork")
Install the packages
Every time you start or resume the session, install the packages you listed in the dependency file by running the following command in the terminal:
**$** R -f install.R
<aside> <img src="/icons/report_yellow.svg" alt="/icons/report_yellow.svg" width="40px" />
Note: You need to install the dependencies every time you launch or resume your session.
</aside>
If your image uses conda as the python package management system, follow the instructions.
Add packages to your project dependencies
To add packages to your environment, add the packages to the dependencies file:Â environment.yml
.
To add your project’s dependencies to environment.yml
, specify an environment name and then a list of dependencies.