Skip to content

sulaimantok/Data-Structures-With-Python

Repository files navigation

Data-Structures-With-Python

This code documentation my learning path about data structures with python

How to install python

Linux

Setting up a Python development environment on Linux

Objectives

  • Install the latest version of Python.

Step

  1. Update and install
sudo apt update
sudo apt install python3 python3-dev python3-venv wget

  1. Install additional components
wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
  1. Verify pip installed
pip --version

Mac Os

Setting up a Python development environment on Mac

Objectives

  • Install the latest version of Python.

Step

  1. To use homebrew to install Python packages, you need a compiler, which you can get by installing
xcode-select --install
  1. Install homebrew by following the instructions on the homebrew homepage, and then use homebrew to install Python as follows:
brew install python
  1. Verify machine already install python and pip
python --version
pip --version

Windows

Setting up a Python development environment on Windows

Objectives

  • Install the latest version of Python.

Step

  1. To install Python in a Windows environment, download the installers for the latest versions of Python from the Python website

  2. To access your version of Python, use Python launcher for Windows

To start the latest version of Python you installed, run the following command:

py

To start the latest version of Python 3 you installed, run the following command:

py -3

To verify the version of pip that is available, run the following command:

pip --version

About

This code documentation my learning path about data structures with python

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages