Skip to content

Instantly share code, notes, and snippets.

View stardigits's full-sized avatar

stardigits stardigits

View GitHub Profile
@stardigits
stardigits / readme.md
Last active May 20, 2022 05:15
How to install Python & Spark in Windows 10

How to install Python & Spark in Windows 10

Notes

  • As per date 18-May-2022, the only latest working Spark version is 3.0.3. There're available spark versions > 3.0.3, but those are found an error
  • pyspark should be installed with the same version of spark pip install pyspark==3.0.3

Version used which verified

  • Windows: 10
@stardigits
stardigits / dstools-setup-on-windows-10.md
Last active February 23, 2023 08:43
Manually Setup Data Science Tools (DSTools) on Windows 10

dstools

Windows Data Science Tools

Directory Structure

DSTools\bin
DSTools\src

Source Files

@stardigits
stardigits / install-docker.sh
Last active October 18, 2024 00:23
Installing Docker in MX Linux 21.3
wget -O docker.gpg https://download.docker.com/linux/debian/gpg
gpg --keyid-format 0xlong docker.gpg 2>/dev/null
gpg --keyid-format 0xlong docker.gpg 2>/dev/null | grep -sq 0x8D81803C0EBFCD88 && sudo apt-key add docker.gpg
# For MX 21:
CODENAME=bullseye
# For MX 19 :
#CODENAME=buster
# For MX 18 :
#CODENAME=stretch
echo "deb [arch=amd64] https://download.docker.com/linux/debian $CODENAME stable" | sudo tee /etc/apt/sources.list.d/docker.list