This code documentation my learning path about data structures with python
- Install the latest version of Python.
- Update and install
sudo apt update
sudo apt install python3 python3-dev python3-venv wget
- Install additional components
wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
- Verify pip installed
pip --version
- Install the latest version of Python.
- To use homebrew to install Python packages, you need a compiler, which you can get by installing
xcode-select --install
- Install homebrew by following the instructions on the homebrew homepage, and then use homebrew to install Python as follows:
brew install python
- Verify machine already install python and pip
python --version
pip --version
- Install the latest version of Python.
-
To install Python in a Windows environment, download the installers for the latest versions of Python from the Python website
-
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