Lattyware / unrpa

A program to extract files from the RPA archive format.
http://www.lattyware.co.uk/projects/unrpa/
GNU General Public License v3.0
590 stars 74 forks source link

Can't install using pythonpy #41

Closed otyugh closed 1 year ago

otyugh commented 1 year ago

It fails to install for me on debian current stable (bullseye)

$py -3 -m pip install "unrpa"
/usr/bin/py:16: DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working
  from collections import Iterable
usage: py [-x] [-l] [-c PRE_CMD] [-C POST_CMD] [-V] [-h] [expression]
py: error: unrecognized arguments: -m pip install unrpa

with pythonpy 0.4.11b-3

Lattyware commented 1 year ago

You are following the instructions for Windows, on Linux, just use python directly: e.g:

python3 -m pip install unrpa

otyugh commented 1 year ago

...Aaand it work that way. Ahm. Thanks, my bad.