ARTIFACTORY: Steps to Install Dataiku DSS client to install the Python packages

Products
Frog_Artifactory
Content Type
Installation_Setup
AuthorFullName__c
Ramyashree V
articleNumber
000006809
FirstPublishedDate
2025-12-31T09:08:42Z
lastModifiedDate
2025-12-31

ARTIFACTORY: Steps to Install Dataiku DSS client to install the Python packages

Step 1: Install Required Core Package Dependencies
Before installing Dataiku DSS, we have to install all required dependencies, including Java, Python, and build tools.
Run the following command:
sudo apt update && sudo apt install -y openjdk-11-jdk python3 python3-pip build-essential
Step 2: Download the Dataiku DSS Installer
Download the Dataiku DSS installer package from the official Dataiku website.
wget https://cdn.downloads.dataiku.com/public/dss/13.3.2/dataiku-dss-13.3.2.tar.gz


Step 3: Extract the Installer Package
Untar the downloaded archive to extract the installer files.
  • tar xzf dataiku-dss-13.3.2.tar.gz
Navigate to the extracted directory:
  • cd dataiku-dss-13.3.2
Step 4: Create a Dataiku User to start the installation
sudo useradd -m -s /bin/bash dssuser
Step 5: Change Directory Ownership
Assign ownership of the Dataiku installation directory to the newly created user.
sudo chown -R dssuser:dssuser /home/ramyashreev/dataiku-dss-13.3.2
Step 6: Switch to the Dataiku User
Log in as the Dataiku user to proceed with the installation.
su - dssuser
Step 7: Start the Dataiku DSS Installation
Run the installer and specify:
  • Installation directory (dss_home)
  • Port number (11000)
    ./installer.sh -d ~/dss_home -p 11000
Step 8: Start the Dataiku DSS Service
Once installation is complete, start the DSS service.
~/dss_home/bin/dss start
Step 9: Access the Dataiku DSS Web Interface
Open a web browser and access Dataiku DSS using the following URL:
http://<ip>:11000
Below is the image we can see after the installation is complete:

User-added image 

To install the Python packages using the DataIku Client, navigate to the OTHER and select the Misc, then configure the Artifactory using the Set Me Up instructions for Pypi package types:

index-url = https://<username>:<token>@<JPD>/artifactory/api/pypi/<repo-name>/simple

User-added image 

Navigate to the code environment, select the Python version, and click on create (below is the sample image to create the new Python env)

User-added image 

Once the environment is created, we can view the list of installed packages as shown below.

User-added image 
Attached below is a screenshot from Artifactory after the installation was completed.

User-added image 
User-added image