@rragona tried to install tofu on a Macbook using a fresh (virgin) conda virtual environment
- The conda package for Mac doesn't exist so he had to use a pip install (using the pip installed via conda)
- pip did not check the tofu dependencies and threw errors at every try
=> It appears we forgot to include a requirements.txt file that pip uses to check the dependencies
=> see this site for details on pip dependencies managing
To try and reproduce : create an empty ne conda package on a mac (with python 3.7, including just the basics like conda, pip).
Then try installing tofu using pip install tofu
=> it should complain about missing dependencies (due to missing requirements.txt)
=>and Ricardo also has an issue because he doesn't have gcc-8 (is it the only solution ? he has another compiler called LLVM)
Also, it seems we forgot openmp in the dependencies for installation
@rragona tried to install tofu on a Macbook using a fresh (virgin) conda virtual environment
=> It appears we forgot to include a requirements.txt file that pip uses to check the dependencies
=> see this site for details on pip dependencies managing
To try and reproduce : create an empty ne conda package on a mac (with python 3.7, including just the basics like conda, pip).
Then try installing tofu using pip install tofu
=> it should complain about missing dependencies (due to missing requirements.txt)
=>and Ricardo also has an issue because he doesn't have gcc-8 (is it the only solution ? he has another compiler called LLVM)
Also, it seems we forgot openmp in the dependencies for installation