You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building Cypress from source on Ubuntu 24.04 LTS requires downgrading Python from built-in version 3.12 to 3.11
Building Cypress from source error-free on the interim release Ubuntu 24.10 is not possible, since there is no downgrade option from the built-in Python 3.12.* version available
Under Python 3.12 rebuilding the following modules as part of yarn install
registry-js
cpu-features
fails with
ModuleNotFoundError: No module named 'distutils'
Other
The version of node-gyp used is not explicitly specified by Cypress. It is dependent on other npm modules installed (and potentially also on the version of Node.js used).
What would you like?
Enable building Cypress from source with node-gyp@10.0.0 or later when executing
yarn
on this repository according to CONTRIBUTING > Getting Started instructions.Why is this needed?
See CONTRIBUTING > Requirements > Debian/Ubuntu
24.04
LTS requires downgrading Python from built-in version3.12
to3.11
24.10
is not possible, since there is no downgrade option from the built-in Python3.12.*
version availableUnder Python
3.12
rebuilding the following modules as part ofyarn install
fails with
Other
The version of
node-gyp
used is not explicitly specified by Cypress. It is dependent on other npm modules installed (and potentially also on the version of Node.js used).Updating packages/server to use the latest version @electron/rebuild@3.7.1 removes the dependency on node-gyp@9.0.0 and would resolve this request. node-gyp@10.2.0 is then used.
The text was updated successfully, but these errors were encountered: