Python

Install new package in Python notebook

Execute this code recipe to install a new Python package in your currently used environment. This recipe assumes that you are using conda for managing your Python environment. MLJAR Studio uses conda for managing Python environment.

Please note that MLJAR Studio automatically install and import packages for you when you are using recipes. However, there might be situation that you would like to write a custom Python code and you will need to import a new package. In this situation, please isntall a new package with this recipe.

install-package

Interactive recipe

You can use below interactive recipe to generate code. This recipe is available in MLJAR Studio.

Python code

# Python code will be here

Code explanation

Install new python package in your current environment using conda. You can specify version of the package after its name.