Re: Error while installing a python code

2020-03-10 Thread Marco Sulla via Python-list
Little errata: you have only to install or update Cython, remove the .c files as I wrote before and run again python setup.py build_ext -b PoissonSolver/ No intermediate steps are required. The generated ELF files are three. You have also to rename them with the names in the README file. On Mon

Re: Error while installing a python code

2020-03-10 Thread Marco Sulla via Python-list
I suppose you tried to use this setup.py: https://github.com/breathe/coffee_conda_package/blob/master/0001-Add-alternative-setup.py-script.patch It's not well written IMHO... anyway this is not the problem. I suppose you also downloaded the required sources from here: https://data.mendeley.com/da

Re: Error while installing a python code

2020-03-09 Thread Barry Scott
> On 9 Mar 2020, at 14:18, Tim Ko wrote: > > Hello, > > I am trying to install a custom Python code but ran into an error. The error > presumably associated with cython. I tried a different compiler since Intel > compiler often crashes when using cython, but couldn't get it working. > > At

Re: Error while installing a python code

2020-03-09 Thread Dieter Maurer
Tim Ko wrote at 2020-3-9 07:18 -0700: >I am trying to install a custom Python code but ran into an error. The error >presumably associated with cython. I tried a different compiler since Intel >compiler often crashes when using cython, but couldn't get it working. Almost surely, the compiler is

Re: Error while installing a python code

2020-03-09 Thread Dieter Maurer
Tim Ko wrote at 2020-3-9 07:18 -0700: >I am trying to install a custom Python code but ran into an error. The error >presumably associated with cython. I tried a different compiler since Intel >compiler often crashes when using cython, but couldn't get it working. Almost surely, the compiler is

Re: Error while installing a python code

2020-03-09 Thread Souvik Dutta
I dont know if this will work. But still something is better than nothing. https://stackoverflow.com/questions/11094718/error-command-gcc-failed-with-exit-status-1-while-installing-eventlet I am not a "spoofer" in case you get any warning. On Mon, Mar 9, 2020, 7:54 PM Tim Ko wrote: > Hello, > >

Error while installing a python code

2020-03-09 Thread Tim Ko
Hello, I am trying to install a custom Python code but ran into an error. The error presumably associated with cython. I tried a different compiler since Intel compiler often crashes when using cython, but couldn't get it working. Attached is the installation error log. I have installed and upd