Error with compiling Python code that includes Rust written modules

281 views Asked by At

So I have written an app that uses a bit of Rust code, and while using "auto-py-to-exe" to turn it into an executable, it gives this error when I run it:

ModuleNotFoundError: No module named 'data_clean'

(data_clean is my rust module)

I used maturin for converting rust -> python and I ran 'maturin develop' on it successfully, it works as expected within my IDE.

I included the folder with all of my Rust code in it, I'm not sure why it's giving me a tough time.

0

There are 0 answers