Question about the install path of Dataiku

Due to the space in my username(Zhao Guanghao)of my laptop, I can not run dataiku correctly. Meanwhile, the filename under the 'User' file in C disk can't be modified, once you rename it directly, the system can not identify the account and it will collapse. Besides, Dataiku can only be installed in the path 'C disk-User-APPDATA-LOCAL'. So I don't know how to solve this problem.
Operating system used: Windows
Operating system used: Windows
Operating system used: Windows
Answers
-
Turribeach Dataiku DSS Core Designer, Neuron, Dataiku DSS Adv Designer, Registered, Neuron 2023 Posts: 2,575 Neuron
Simple. Create a new user account in your Windows system without any spaces. Install Dataiku under that user account.
-
Hello,
Try to use mklink to miror the path where you want to install it.
mklink /J C:\DataikuUser "C:\Users\Zhao Guanghao\AppData\Local"
# or in powershell
New-Item -ItemType Junction -Path "C:\Users\DataikuUser" -Target "C:\Users\Zhao Guanghao"I've never had these ssue and not installed dku localy longtemps ago.
If Dataiku installer allows custom paths, point it to:
C:\DataikuUser
If junction point doesn't work, you can also try:
subst D: "C:\Users\Zhao Guanghao\AppData\Local"