- Download Gpg4win: Visit Gpg4win's official website and download the latest version.
- Run the Installer: Open the downloaded file and follow the installation instructions. Select the components you wish to install (default selection is usually sufficient for most users).
- Complete the Installation: Proceed with the installation and complete it.
- Download File: Go to the kaggle link sent in the telgram channel, and download the file.
- Decrypt the File: Click on file to open it. The Kleopatra app (comes installed in default Gpg4win set-up) should open automatically and prompt for passphrase. Enter the passphrase sent in your email.
- Store the decrypted data file in the
data
folder in your local copy of the template repo.
- Download GPG Suite: Visit GPGTools website and download GPG Suite for macOS.
- Install GPG Suite: Open the downloaded
.dmg
file and follow the installation instructions.
- Download File: Go to the kaggle link sent in the telgram channel, and download the file.
- Open Terminal: You can find it in Applications > Utilities > Terminal.
- Navigate to the File's Directory:
cd path/to/file/directory
- Decrypt the File:
gpg --decrypt catA_train.csv.gpg ## OR gpg --decrypt catB_train.parquet.gpg
outputfile
Enter the passphrase sent in your email.
5. Store the data in the `data` folder in your local copy of the template repo.
## For Linux
### Installing GPG:
GPG is usually pre-installed on most Linux distributions. If it's not, you can install it using the package manager.
For Ubuntu/Debian-based systems:
```bash
sudo apt-get install gnupg
For Fedora/RHEL-based systems:
sudo yum install gnupg
For Arch Linux:
sudo pacman -S gnupg
- Download File: Go to the kaggle link sent in the telgram channel, and download the file.
- Open Terminal.
- Navigate to the File's Directory:
cd path/to/file/directory
- Decrypt the File:
Enter the passphrase sent in your email.
gpg --decrypt catA_train.csv.gpg ## OR gpg --decrypt catB_train.parquet.gpg
- Store the data in the
data
folder in your local copy of the template repo.