python programming issue Programming by Ccrobinson001 … -r requirements.txt (line 6)) Downloading pillow-10.3.0.tar.gz (46.6 MB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 46.6/46.6 MB 4… Re: python programming issue Programming by Reverend Jim Can you please post the contents of requirements.txt? I don't know if this will make a difference, but when I install python I always put it in c:\python and install for all users. I find it much easier when trying to fix problems like this to have all the files in a top level folder rather than buried multiple levels down in appdata… Re: python programming issue Programming by GodMode9 I have faced similar issues before! Sometimes the problem is related to incorrect indentation. Python is very particular about spaces, so double-checking your code can help fix the issue. Re: python programming issue Programming by Pebble94464 Hi Ccrobinson001, I've just attempted installing to my system but could not reproduce the issue. Everything installed as expected. Maybe you could try upgrading **pip** and **setuptools** first, if you haven't done so already? pip install --upgrade pip setuptools I recreated your requirements.txt file based on the output that you … tar vulnerability Programming Software Development by Yulen .tar vulnerability https://github.com/dalmat501/https-github.com-dotnet-runtime/pull/1/commits/2c9ef4796667b3a2443c11ea24a96d40199b3606 https://github.com/advisories/GHSA-gw9q-c7gh-j9vm Re: tar vulnerability Programming Software Development by rproffitt … a decade but in an old PalmOS app I used tar files for the client to supply their own updates. As… such I wrote my own tar expander in C. So I can see that there may… .tar extracting snippet Programming Software Development by nightcracker …{ struct tarheader header; char buf[512]; long size; FILE* tar = fopen(tarname, "rb"); FILE* output; // … (size > 512) { fread(&buf, 1, 512, tar); fwrite(&buf, 1, 512, output); size -= 512; }… fread(&buf, 1, 512, tar); fwrite(&buf, 1, size, output); // don't write… tar issues... Programming Software Development by omrsafetyo … of it. I tried an obvious command: tar xvf /u8/sp_archive/2005.tar *1274* All files I want to extract … I came up with: [code] $ for file in `tar tvf /u8/sp_archive/2005.tar | grep 1274 | awk '{print $9}' | sed &…| head -5` > do > echo $file > tar tvf /u8/sp_archive/2005.tar $file > done [/code] My output: mu1274.Apr… tar/gzip questions Hardware and Software Linux and Unix by DougC Need some assistance here... I can tar a file and I can gzip the tar'ed file but... when I download the gzipped…'s the commands I used.... tar -cvf foo.tar foo.com/ gzip -c foo.tar > foo.tar.gz I am not a linux… Re: tar issues... Programming Software Development by omrsafetyo … following command worked fine: [code] $ for file in `tar tvf /u8/sp_archive/2005.tar | grep 1274 | awk '{print $9}'` > do >…; tar xvf /u8/sp_archive/2005.tar "$file" > done [/code] It was about… Tar-ing and zip-ing files after a specific time frame - HELP NEEDED Programming Software Development by dannyfang …'s copied to another directory where it's tar-ed and gzip-ed. 5)If one(1…out in the script) However, tar and gzip process failed to tar these 4 files correctly(according …them. Instead, the file ._.._.BSC.BSC_VAL..tar.gz is produced: prod-cingtuna\ :/mkl/users/lows …Mar 20 19:44 ._.._.BSC.BSC_VAL..tar.gz Could anyone help me out by pointing… Re: tar issues... Programming Software Development by eggi … is interpreting the * character before it passes it to tar: [QUOTE] # tar xvf bin.tar "*perl*" perly perltest.pl[/QUOTE] The… tar command output? Hardware and Software Linux and Unix by lewashby …html/udemy/php-oop/gallery/backups $ tar --exclude-tag-all=backups -cf lesson20.tar ../* tar: Removing leading `../' from member names …called backups in my backups directory to keep the tar file from trying to backup itself. Does anyone… know why I'm getting this output? -> `tar: Removing leading ../' from member names` Note that there was… Re: tar command output? Hardware and Software Linux and Unix by lewashby … directory where I'm trying to store all of my tar balls of the web project as I progress through the…/www/html/udemy/php-oop/gallery/backups/ I want to tar everything under gallery except the backups directory itself. I ran… about using relative paths in this sense or from the tar output mentioned above? Thanks rubberman. I thank you've answered… Re: tar issues... Programming Software Development by masijade You can also do [code] tar xvf bin.tar \*perl\* [/code] but you're right, the quotes are probably easier. Re: tar command output? Hardware and Software Linux and Unix by Gribouillis I think you are creating a *tar bomb*, a tar archive that explodes into many files instead of creating a single directory. Can't you try tar --exclude-tag-all=backups -C ../.. -cf lesson21.tar gallery Re: tar command output? Hardware and Software Linux and Unix by lewashby Okay, what will that do? I know when I run `tar tvf lessonxx.tar` on my tar files that it does list everything inside so it seems to be creating a tar fall will everything I want inside. I'm just wondering about that omitting ../ output. Gribouillis, you're the other user who's always answered a lot of my posts. Thanks. Re: tar command output? Hardware and Software Linux and Unix by rubberman You can disable tar's removal of absolute paths (including, but not limited to '/' … - not where the tarball is. Overwriting this default behavior of tar is VERY dangerous can can easily bork your system, permanently… Re: tar.gz file Programming Software Development by binoj_daniel Download GZIP and TAR utilities from [URL="http://users.ncrvnet.nl/gmvdijk/utilities.…/"]Download it here.[/URL] The tar.gz extension means that the file is a TAR archive that has also been gzipped… first need to unzip it with gzip gzip -d [filename.tar.gz] and then untar it with txr -xf [filename… Re: tar command output? Hardware and Software Linux and Unix by Gribouillis > Okay, what will that do? 1. You won't have the error message any more 2. Your tar file would contain a single directory named gallery Re: tar file Programming Software Development by stephen84s … import projects made with Ant. As far as tar-ing your sources go, if you are on… a Linux distro a simple [icode]man tar[/icode] in a terminal will tell you how… to create a tar archive, However if you are on Windows take…not see any difference between the three(except for tar being a free software). Check [URL="… Re: tar.gz file Programming Software Development by vvvexor [QUOTE=franco75;469003]hi, how to extract tar.gz files in c# application?[/QUOTE] I don't know if it's still relevant for you. There are plenty opensource libraries to read/write zip / tar archives from C#. You can use something like this one library: [URL="http://code.google.com/p/tar-cs/"]http://code.google.com/p/tar-cs/[/URL] Re: .tar.gz from root but not root Hardware and Software Linux and Unix by mike_2000_17 … others too. Let's say you have the file `my_archive.tar.gz` which contains a top-level directory called `my_folder`, and…;myself". Then, you can do this: $ sudo su # tar -xzf my_archive.tar.gz # chown -R myself my_folder # chmod -R go-w… Re: .tar.gz from root but not root Hardware and Software Linux and Unix by davidnelson4911 … properly when they are put into the tar.gz archive then: `sudo tar -xpvzf filename.tar.gz` Will A: Ensure that it is… tar cvzf problem Hardware and Software Linux and Unix by veledrom … and create backup file. [CODE]ubuntu@ubuntu:~$ tar cvzf backup.tgz /var/www/compression/1/ tar: Removing leading `/' from member names /var… Re: tar command Hardware and Software Linux and Unix by kings_mitra 1. Go to the folder where u want to extract the contents to... 2. Use the command tar -xzvf /directory/to/your/file.tar.gz The files with the tar will be untar in the current directory Cheers :) tar and md5sum Hardware and Software Linux and Unix by johndoe444 … identical in terms of content. So what I did was tar the directories and then md5sum-ed them and then compare… why would that happen? So now which one is wrong - tar or md5sum? Thanks. Re: tar and md5sum Hardware and Software Linux and Unix by shibblez Neither, they're both correct. A tar file contains metadata as well as the original data, so if the metadata doesn't match then the checksums won't. If you look on wikipedia for tar(file format) you'll see that the metadata includes stuff like creation data fro both the files and the tarball .tar.gz from root but not root Hardware and Software Linux and Unix by lewashby I need to use the tar command to unpack a .tar.gz file and I need to do it from root but when the files unpack I want them to be owned by a specific user, not the root user. Can someone give me a hand?. I found the man pages confusing. Re: tar cvzf problem Hardware and Software Linux and Unix by gerard4143 Try this link, it provide some simple examples [url]http://www.metatitan.com/linux/5/how-to-tar-untar-from-the-command-line.html[/url]