marker icon indicating copy to clipboard operation
marker copied to clipboard

Is there any chance someone can help with ubuntu install?

Open scottbetza opened this issue 1 year ago • 3 comments

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"?

scottbetza avatar May 23 '24 11:05 scottbetza

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.

rmast avatar Aug 25 '24 19:08 rmast

@scottbetza pipx install marker-pdf worked on my Ubuntu 24.10 system.

svenha avatar Dec 02 '24 15:12 svenha

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.

attilajam avatar Apr 22 '25 21:04 attilajam