cc_staff
284
edits
No edit summary |
m (Added section on not supported wheel) |
||
Line 577: | Line 577: | ||
and then create a [[Python#Creating_virtual_environments_inside_of_your_jobs|requirements file]] that will be used to install the required packages in your job. | and then create a [[Python#Creating_virtual_environments_inside_of_your_jobs|requirements file]] that will be used to install the required packages in your job. | ||
=== X is not a supported wheel on this platform === | |||
When installing a package you may encounter the following error: <tt>ERROR: package-3.8.1-cp311-cp311-manylinux_2_28_x86_64.whl is not a supported wheel on this platform.</tt> | |||
Some packages may be incompatible or not supported on the systems. | |||
Two common cases are: | |||
* trying to install a <tt>manylinux</tt> package | |||
* or a python package built for a different python version (e.g. installing a package built for python 3.11 when you have python 3.9). | |||
Some <tt>manylinux</tt> package can be made available through the [[Available Python wheels|wheelhouse]]. | |||
</translate> | </translate> |