Zulip Chat Archive

Stream: general

Topic: mathlibtools in GH Actions


Rob Lewis (Jun 06 2020 at 18:26):

I'm trying to install mathlibtools in an Action and having some trouble. Is there anywhere in CI we actually do this already? Or anyone know what's up here?

  pip --version
  sudo pip install mathlibtools
pip 20.1.1 from /opt/hostedtoolcache/Python/3.8.3/x64/lib/python3.8/site-packages/pip (python 3.8)
The directory '/home/runner/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/runner/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting mathlibtools
  Could not find a version that satisfies the requirement mathlibtools (from versions: )
No matching distribution found for mathlibtools
##[error]Process completed with exit code 1.

Bryan Gin-ge Chen (Jun 06 2020 at 18:28):

I got it working in doc-gen#27, maybe that helps?

Rob Lewis (Jun 06 2020 at 18:46):

It does, thanks!

Patrick Massot (Jun 06 2020 at 18:53):

I'd be curious to have details here.

Rob Lewis (Jun 06 2020 at 18:55):

My hypothesis is that there's something funny with the setuptools versioning, when I tried to run the "everything at once" script in Actions the error was about that.


Last updated: Dec 20 2023 at 11:08 UTC