We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If anybody else stumbles upon some errors during installation of rfmini with recent python versions, here is how I solved mine.
I needed to delete the file rfmini.c. Furthermore I edited the setup.py script of rfmini (line with include_dirs):
rfmini.c
from distutils.core import setup from distutils.extension import Extension from Cython.Distutils import build_ext import numpy as np ext_modules=[ Extension("rfmini", ["rfmini.pyx","greens.cpp","model.cpp","pd.cpp","synrf.cpp","wrap.cpp","fork.cpp"], include_dirs=[np.get_include()]) ] setup( name = 'RfMini', cmdclass = {'build_ext': build_ext}, ext_modules = ext_modules, )
In my conda environment I installed the following packages:
conda install cython cxx-compiler
After that installation with pip was successful.
The text was updated successfully, but these errors were encountered:
Thanks for sharing.
Sorry, something went wrong.
No branches or pull requests
If anybody else stumbles upon some errors during installation of rfmini with recent python versions, here is how I solved mine.
I needed to delete the file
rfmini.c
. Furthermore I edited the setup.py script of rfmini (line with include_dirs):In my conda environment I installed the following packages:
After that installation with pip was successful.
The text was updated successfully, but these errors were encountered: