2

When I use cython , I use this commandline to compile my pyx file:

python setup.py build_ext --inplace 

With the --inplace argument , my C file , builds folders and pyd compiled python module go where my pyx source file is.

There a way to compile all this files in a specific folder? I searched on google and cython website without findung anything.

1

1 Answer 1

1

You can try:

python setup.py build_ext -b /../../../../dir/ -t . 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.