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
I'm new to this kind of stuff so sorry if these are dumb questions.
I have a project that uses Pandas and OrTools (https://pypi.org/project/ortools/), I would like to convert it to WASM and use it on the web.
Is py2wasm the right tool for it?
Just by trying to run py2wasm on a simple file with import I run into issues.
Code:
import pandas as pd
df = pd.read_csv("my.csv", index_col = False)
py2wasm main.py -o main.wasm
py2wasm: Using wasi-sdk from /usr/local/lib/python3.11/site-packages/nuitka/wasi-sdk/21/sdk-Darwin
Nuitka-Options: Used command line options: main.py --standalone --static-libpython=yes --disable-ccache --lto=yes
Nuitka-Options: --output-dir=/usr/local/lib/python3.11/site-packages/nuitka/__py2wasm --output-filename=output.wasm --remove-output
Nuitka: Starting Python compilation with Nuitka '2.6.3' on Python '3.11' commercial grade 'not installed'.
FATAL: options-nanny: Error, package 'Foundation' requires '--macos-create-app-bundle' to be used or else it cannot work.
Nuitka-Reports: Compilation crash report written to file 'nuitka-crash-report.xml'.
The text was updated successfully, but these errors were encountered:
Hi!
I'm new to this kind of stuff so sorry if these are dumb questions.
I have a project that uses Pandas and OrTools (https://pypi.org/project/ortools/), I would like to convert it to WASM and use it on the web.
Is py2wasm the right tool for it?
Just by trying to run py2wasm on a simple file with import I run into issues.
Code:
py2wasm main.py -o main.wasm
The text was updated successfully, but these errors were encountered: