Installation
Set up environment
Make sure you are using Python 3.8-3.11 and have pip
installed
python --version
pip --version
If not, then please follow the instructions below to install it
- Ubuntu
- macOS
- Windows
You can install Python 3.10 with an apt
command.
sudo apt update
sudo apt install python3.10
sudo apt install python3.10-venv
Once you have installed Homebrew, you can install Python 3.10.
brew update
brew install python@3.10
You need to install Python 3.10 (64-bit version) for Windows.
After this, you can then install pip
.
C:\> pip3 install -U pip
Once Python is installed, you should create virtual environment
- Ubuntu
- macOS
- Windows
Create a new virtual environment by making a ./env
directory to hold it.
python -m venv ./env
Activate the virtual environment:
source ./env/bin/activate
Create a new virtual environment by making a ./env
directory to hold it.
python -m venv ./env
Activate the virtual environment:
source ./env/bin/activate
Create a new virtual environment by making a ./env
directory to hold it.
C:\> python -m venv ./env
Activate the virtual environment:
C:\> .\env\Scripts\activate
Install dlt
library
You can install dlt
in your virtual environment by running:
pip install -U dlt