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
Fix: Build Cantera before MFC to avoid PyPI dependency error
The issue was that ./mfc.sh build was running first and trying to create
its own venv with cantera==3.1.0 from PyPI (which doesn't exist).
Solution:
1. Create venv with [email protected] FIRST
2. Build and install Cantera 3.1.0 from source into venv
3. Install MFC Python toolchain into venv (with Cantera already there)
4. Symlink build/venv to our pre-installed venv
5. Set VIRTUAL_ENV and PATH environment variables
6. Run mfc.sh build (which now uses existing venv with Cantera)
This ensures mfc.sh uses our pre-configured venv instead of creating
a new one and trying to install the non-existent cantera==3.1.0 from PyPI.
0 commit comments