Add packages to your Environment and manage package versions.
- Package dependency files
- 
Use requirements.txtorinstall.Rto install packages to your Environment every time you start an execution.
- Internal package hosting
- 
Use Dockerfile instructions to install internal mirrors of public package repositories. 
- Preload Environment packages
- 
Use Dockerfile Instructions to install packages to your Environment permanently with quick execution times. 
- Use requirements.txt
- 
Specify additional dependencies, you can add a pip requirements file named requirements.txtto the root of your project folder. (This is for Python only.)
