About 91,300 results
Open links in new tab
  1. Open xz file from the command line in Windows 10 - Stack Overflow

    Mar 2, 2017 · My colleagues using mac or linux open xz files with this line: xz --decompress --stdout "file.csv.xz" On my pc, with windows 10, I get the following error: 'xz' is not recognized …

  2. How to open a large file with an .tar.xz extension? - Super User

    I got a 1GB file with an .tar.xz extension. Apparently, inside this single file is PDF files and ebooks. How do I open this type of file and read these files? Does ExtractNow work? Any …

  3. compression - How to unpack xz file with python which contains …

    Feb 7, 2017 · How to unpack xz file with python which contains only data but no filename? Asked 8 years, 8 months ago Modified 3 years, 3 months ago Viewed 30k times

  4. Error extracting tar.xz files in Windows using command line

    Aug 3, 2022 · I am able to use 7-zip to open the files, but for this I have to manually unzip each file from .xz first and then untar, and this is a bit of a pain. I have previously been able to use a …

  5. Native .tar extraction in Powershell - Stack Overflow

    I have a .tar.gz file that I need to extract. I've handled the gunzip bit with the GzipStream object from System.IO.Compression, but I couldn't find anything for dealing with tarballs in that names...

  6. Cannot decompress .tar.xz file, getting "xz: Cannot exec: No such …

    Cannot decompress .tar.xz file, getting "xz: Cannot exec: No such file or directory" from tar Ask Question Asked 11 years, 2 months ago Modified 4 years, 4 months ago

  7. How can I read a .xz file in Python? - Stack Overflow

    Aug 10, 2020 · I am downloading files from the web with the ending .xz. It says they are JSONstrean files. Is there a way to read these files in Python, for example like a CSV file?

  8. How do I read an .tar.xz file? - Stack Overflow

    Feb 7, 2020 · On Debian or Ubuntu, first install the package xz-utils $ sudo apt-get install xz-utils Extract a .tar.xz the same way you would extract any tar.__ file. $ tar -xf file.tar.xz Done.

  9. unzip xz file into memory and read csv with pandas

    Dec 13, 2021 · I have a zipped file which contains a csv, compressed with xz. I want to unzip it into the memory, and read wit pandas' read_csv method. Pandas knows xz compression data …

  10. python - Open .json.xz files - Stack Overflow

    Apr 20, 2020 · This is probably because the compressed data file you have is incomplete/corrupted. The code you have provided works fine for decompressing json.xz files.