You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On an Apple M1 Arm machine and trying to install from source, I cannot get the final make install-python-user install command to install into my conda environment.
Inital steps:
conda env create --file=deps.yml
conda activate condatitanlib
cmake -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DBUILD_R=OFF . -B build
cd build
make -j 12
make install
make install-python-user -j 12
This final command prints (print statement here) INSTALL DIR /Users/[my_username]/.local/lib/python3.10/site-packages
Which won't work because all the dependencies are in the conda env.
I tried the nuclear option of manually specifying the location of the python but that doesn't seem to affect the output of distutils.sysconfig.get_python_libhere.
On an Apple M1 Arm machine and trying to install from source, I cannot get the final
make install-python-user
install command to install into my conda environment.Inital steps:
This final command prints (print statement here)
INSTALL DIR /Users/[my_username]/.local/lib/python3.10/site-packages
Which won't work because all the dependencies are in the conda env.
I tried the nuclear option of manually specifying the location of the python but that doesn't seem to affect the output of
distutils.sysconfig.get_python_lib
here.What is the intended way to install the python bindings into a conda environment?
The text was updated successfully, but these errors were encountered: