Pip knows about the pyx package:
$ pip search pyx
PyX - Python package for the generation of PostScript and PDF files
Trying to install it gives an error:
$ pip install pyx
Collecting pyx
Could not find any downloads that satisfy the requirement pyx
Some externally hosted files were ignored as access to them may be unreliable (use --allow-external pyx to allow).
No distributions at all found for pyx
I followed the error message and used --allow-external pyx
, but got a different error:
$ pip install --allow-external pyx
You must give at least one requirement to install (see "pip help install")
How can I use pip to install the pyx package?