Process Tools
Classification Scripting
Adding more
4 min
step 1 use the correct python interpreter the python interpreter in the terrarium environment is not added to your system path by default always reference the interpreter explicitly step 2 install a package with pip to install a package (e g , numpy ), run this will download and install the latest compatible version of the package into the environment example c \programdata\terrarium\0 4\python exe step 3 install from a requirements file if you have a list of packages in a requirements txt file, use c \programdata\terrarium\0 4\python exe m pip install r requirements txt this will download and install the latest compatible version of the package into the environment step 4 install from a whl file if you have a wheel file ( whl ) downloaded locally and place it in the terrarium folder c \programdata\terrarium\0 4\python exe m pip install c \path\to\some package whl step 5 verify the installation after installing, confirm the package is available c \programdata\terrarium\0 4\python exe m pip list you should see your installed package listed notes avoid using python or pip directly unless you've added c \programdata\terrarium\0 4 to your system path all commands must be run from a command prompt (not powershell) for full compatibility with the exe installation format
