unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
From: Pradana Adrinusa AUMARS <paumars@courrier.dev>
To: Tobias Geerinckx-Rice <me@tobias.gr>
Cc: Ricardo Wurmus <rekado@elephly.net>, help-guix@gnu.org
Subject: Re: Python subprocess fails to execute Pip-installed module / Packaging Python Ray
Date: Sat, 12 Nov 2022 23:46:32 +0100	[thread overview]
Message-ID: <8dd94531b4a41b6bdc5f3159bec128c28f4400f3.camel@courrier.dev> (raw)
In-Reply-To: <8d054eb211fd79040d5238c08f1a8e130fd11d2e.camel@courrier.dev>

I'm in the process of packaging Ray for Python.

Here is the current SCM configuration:

(use-modules (guix packages)
	     (guix download)
	     ((guix licenses) #:prefix license:)
	     (gnu packages python)
	     (guix utils)
	     (guix build-system python)
	     (gnu packages linux)
	     (gnu packages check)
	     (gnu packages rpc)
	     (gnu packages python-build)
	     (gnu packages protobuf)
	     (gnu packages machine-learning)
	     (gnu packages python-science)
	     (gnu packages python-web)
	     (gnu packages python-xyz))

(define python-setproctitle
  (package
    (name "python-setproctitle")
    (version "1.2.2")
    (source
     (origin
       (method url-fetch)
       (uri (pypi-uri "setproctitle" version))
       (sha256
        (base32
         "1pwp1lb9mf0kgg3sbf1z8dkfnmwcqvixc0by00s3sh2ji0n4gyvx"))))
    (build-system python-build-system)
    (arguments
     '(#:phases
       (modify-phases %standard-phases
         (replace 'check
           (lambda* (#:key tests? #:allow-other-keys)
             (setenv "PYTHON" (or (which "python3") (which "python")))
             (setenv "PYCONFIG" (if (which "python3-config")
                                    "python3-config --embed"
                                    "python-config"))
             (substitute* "tests/conftest.py"
               (("cc") "gcc"))
             (when tests?
               (invoke "pytest" "tests/")))))))
    (native-inputs
     (list procps python-pytest))   ; required for tests
    (home-page "")
    (synopsis "")
    (description "")
    (license license:bsd-3)))

(package
 (name "python-ray")
 (version "2.0.0")
 (source
  (origin
   (method url-fetch)
   (uri (string-append "https://github.com/ray-project/ray/archive/refs/tags/ray-" version
		       ".tar.gz"))
   (sha256
    (base32
     "1gqp2h9fngn2miavksvd041b7pd19vf1lamarc5qwcmdx3b42f1k"))))
 (build-system python-build-system)
 (arguments
  '(#:phases
    (modify-phases %standard-phases
		   (replace 'build
			    (lambda _
			      (invoke "python3" "python/setup.py" "build"))))))
 (native-inputs
  (list python-attrs
	python-click
	python-dataclasses
	python-filelock
	python-grpcio
	python-jsonschema
	python-msgpack
	python-numpy
	python-packaging
	python-pyyaml
	python-aiosignal
	python-frozenlist
	python-requests
	python-virtualenv
	python-wheel
	python-cython
	python-setproctitle
	python-colorama
	python-psutil))
 (home-page "")
 (synopsis "")
 (description
  "")
 (license license:asl2.0))

When I build the package, pip tries to download from
pypi.org/simple/psutil, even though it's written as an input in this
configuration. The output gives this error:

warning: build_py: byte-compiling is disabled, skipping.

running build_ext
WARNING: The directory '/homeless-shelter/.cache/pip' or its parent directory is not owned or is not writable by the current user. The cache has been disabled. Check the permissions and owner of that directory. If executing pip with sudo, you should use sudo's -H flag.
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7ffff5a81b20>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/psutil/
...
ERROR: Could not find a version that satisfies the requirement psutil (from versions: none)
ERROR: No matching distribution found for psutil

Has there been a similar issue with Python packages with psutil as an
input or with pip not properly finding dependencies like this?

Thanks

Le dimanche 16 octobre 2022 à 20:53 +0200, Pradana Adrinusa AUMARS a
écrit :
> Thank you for the explanation, Ricardo,
> 
> Thank you for the explanation Tobias,
> 
> I tried a simple solution by finding where my "ld" is located with
> "whereis" and a symbolic link to "/lib64/ld-linux-x86-64.so.2".
> 
> Unfortunately, I get an Error 80 which means it used a corrupted shared
> library.
> 
> I think it's better to package Ray natively into Guix, but it's time-
> consuming since Ray is not a simple Python package. I was hoping for a
> temporary solution, but I don't think I can find one. I'll try to use
> another machine to make this project run.
> 
> Thank you anyways.
> 
> Le dimanche 16 octobre 2022 à 17:50 +0200, Tobias Geerinckx-Rice a
> écrit :
> > Hi Pradana,
> > 
> > Pradana Adrinusa AUMARS 写道:
> > > dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, for
> > 
> > And this file doesn't exist.
> > 
> > Prebuilt binary blobs don't mix well with Guix for this reason: 
> > they hard-code file names such as this one.
> > 
> > One (brand-)new work-around is
> > 
> >   $ guix shell -CF [PACKAGE…] [-- your command line]
> > 
> > E.g.,
> > 
> >   $ guix shell -CF -- ./hello # random binary downloaded from 
> >   Debian
> >   Hello, world!
> > 
> > which creates a virtual, backwards-compatible directory layout 
> > within the container.
> > 
> > This is a (glorious) hack, but it's no substitute for proper Guix 
> > packaging!
> > 
> > > outputs that bash cannot find this file.
> > 
> > That error is criminally misleading.  ‘A’ file, but not ‘this’ 
> > file.  :-/
> > 
> > Kind regards,
> > 
> > T G-R
> 
> 



      reply	other threads:[~2022-11-12 22:47 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-16 11:38 Python subprocess fails to execute Pip-installed module Pradana Adrinusa AUMARS
2022-10-16 15:21 ` Ricardo Wurmus
2022-10-16 15:37   ` Pradana Adrinusa AUMARS
2022-10-16 15:50     ` Tobias Geerinckx-Rice
2022-10-16 18:53       ` Pradana Adrinusa AUMARS
2022-11-12 22:46         ` Pradana Adrinusa AUMARS [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8dd94531b4a41b6bdc5f3159bec128c28f4400f3.camel@courrier.dev \
    --to=paumars@courrier.dev \
    --cc=help-guix@gnu.org \
    --cc=me@tobias.gr \
    --cc=rekado@elephly.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).