I’m trying to install vina
package in virtual conda environment. Everything goes fine until pip install vina
. This ends with following error:
error: subprocess-exited-with-error
× Getting requirements to build wheel did not run successfully.
│ exit code: 1
╰─> [63 lines of output]
fatal: not a git repository (or any of the parent directories): .git
Version found 1.2.5 (from __init__.py)
running egg_info
creating vina. Egg-info
writing vina. Egg-infoPKG-INFO
writing dependency_links to vina.egg-infodependency_links.txt
writing requirements to vina.egg-inforequires.txt
writing top-level names to vina.egg-infotop_level.txt
writing manifest file 'vina.egg-infoSOURCES.txt'
Boost library is not installed in this conda environment.
But I have boost installed, I executed mamba install -c conda-forge numpy swig boost-cpp sphinx sphinx_rtd_theme
. I also have boost_1_82 installed and added to system PATH. I was trying to list dependencies using johnnydep vina
but it also filed with Boost library location was not found!
So my question is how to fix it? How can I set correctly reference to boost so my conda virtual env will find it?