Is there any chance someone can help with ubuntu install?
I have python and pytorch ROCm, and ROCm installed.
When I try to run "pip install marker-pdf" I get "error: externally-managed-environment." Should I override and pass "--break-system packages"?
You might add your extra ROCm requirement to the title. Ubuntu is no problem, ROCm might be a specialty. I have it running on Ubuntu just on CPU.
@scottbetza pipx install marker-pdf worked on my Ubuntu 24.10 system.
I use Arch and my python is also externally managed. The best way is to use a virtual environment. Here's what I did to get ROCm working:
mkdir project_name & cd project_name
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip3 install --pre torch --index-url https://download.pytorch.org/whl/nightly/rocm6.4/
pip3 install marker-pdf
With this ROCm should be working properly when running commands.