1.5 KiB
If you are here because you are trying to build Deluge client, before proceeding, please check build instructions in Deluge regarding the location of the python virtual environment folder (
.venvin this case).
To build a debug version with python bindings, first (re)build and (re)install the debug target:
b2 crypto=openssl cxxstd=14 debug
sudo b2 install --prefix=/usr/local
Then check Modern Python Tools, and install uv:
curl -LsSf https://astral.sh/uv/install.sh | sh
Then create a virtual env indicating the python version you want to use:
uv venv --python 3.12.3
It will create a folder called .venv in your current folder.
Activate the environment:
source .venv/bin/activate
Make sure you have the correct path to the
.venvfolder, If you are not in the folder directly containing.venvfolder.
Then, install setuptools:
uv pip install setuptools
Also make sure that you have:
sudo apt install libboost-python-dev
as specified in libtorrent python binding in prerequisites.
Finally, from bindings/python run:
python setup.py build_ext --b2-args=variant=debug install
Python bindings should be ready to use. You should be able to test it with:
python
Python 3.12.3 (main, Sep 11 2024, 14:17:37) [GCC 13.2.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import libtorrent
>>>