-
If you're on Windows (eww):
- Visit VSCode.
- Download the Windows-64 'Stable' version.
- Follow the installation steps by running the downloaded file, and check the ADD VSCode to PATH option for sure.
-
If you're on Linux (the Gods):
- Install using snap. Choose your distro type in the list to install snap.
- snap is a new global package-manager common to all distros.
$ # For example, on Debain-based systems : $ sudo apt update $ sudo apt install snapd $ sudo snap install code --classic
-
If you're on a Mac (Lucky you) :
-
Visit VSCode.
-
Download the MacOS 'Stable' version.
-
Follow the installation steps by running the downloaded file (OR)
-
Install it using homebrew. It is a widely used package-manager on Mac.
$ # Install Brew : $ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
$ # Install VSCode : $ brew update $ brew tap caskroom/cask $ brew cask search visual-studio-code $ brew cask install visual-studio-code
-
-
If you're on Windows :
- Click this link to download.
- Follow the installation steps by running the downloaded file, and check the ADD Python to PATH option for sure.
-
If you're on Linux :
Install it using your distro's package manager.
$ # For example, on Debain-based systems : $ sudo apt-get update $ sudo apt-get install python3
-
If you're on a Mac :
Install it using homebrew.
brew search python brew install python3
- Make sure you've git installed on your system.
- The master branch will have initial code, and the completed branch will have the completed code.
- Clone the repo in your desired directory, to get the code :
# The dot is to clone the repo in the current directory.
git clone https://github.com/theskinnycoder/python_crash_course.git .
- Checkout to the master branch to get the initial code :
git checkout master
- Checkout to the completed branch to get the completed code :
git checkout completed
Happy Coding!