У меня есть 2 папки:
- cython_folder<br>
- hello.pyx<br>
- setup.py<br>
and build this using **python setup.py build_ext --inplace** and it works well.
inside the python terminal
- python_folder<br>
- helloworld.py<br>
Теперь я хочу использовать функцию hello.pyx файла в helloworld.py file
Я пробовал:
внутри helloworld.py
from cython_folder import hello
и выдает ошибку:
Traceback (most recent call last):
File "helloworld.py", line 1, in <module>
from cython_folder import hello
ModuleNotFoundError: No module named 'cython_folder'
как мы это делаем ...