Python project zip extract
I have my python project as a zip file. I have uploaded it to lib/python. Not sure how to extract the zip file inside the Dataiku library.
Can we extract via notebook?
How to get the library directory information?
Answers
-
Alexandru Dataiker, Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 1,226 Dataiker
Hi,
The libraries structure does not permit unzipping files directly there.
You can do it in a notebook with:
!unzip DATADIR/
<span class="pre">config/projects/PROJECT_KEY/lib/path/to/filename.zip </span>
Per-project library folder is in
<span class="pre">DATA_DIR/config/projects/PROJECT_KEY/lib</span>
Global library folder is in
<span class="pre">DATA_DIR/lib/python</span>
-
i have uploaded in lmy project.zip in /lib, /lib/python in 2 locations.
tried below combinations still not able to point the exact folder,
!unzip DATADIR/config/projects/TESTEXPLORER/lib/myproject.zip
!unzip DATADIR/config/projects/TESTEXPLORER/lib/python/myproject.zip
!unzip DATADIR/config/projects/TESTEXPLORER/lib/path/python/myproject.zip
!unzip DATADIR/config/projects/TESTEXPLORER/lib/path/to/myproject.zip
getting error :
unzip: cannot find or open DATADIR/config/projects/TESTEXPLORER/lib/python/myproject.zip, DATADIR/config/projects/TESTEXPLORER/lib/python/myproject.zip.zip or DATADIR/config/projects/TESTEXPLORER/lib/python/myproject.zip.ZIP.
can you tell how to explore like a terminal to find the exact path?