Leonard Lausen created ARROW-10868:
--------------------------------------
Summary: pip install --user fails to install lib
Key: ARROW-10868
URL: https://issues.apache.org/jira/browse/ARROW-10868
Project: Apache Arrow
Issue Type: Task
Components: Python
Reporter: Leonard Lausen
Compiling and installing C++ library via:
```
cd ~/src/pyarrow/cpp
mkdir build
cd build
CC=clang-11 CXX=clang++-11 cmake -GNinja -DARROW_PYTHON=ON ..
ninja
sudo ninja install
```
Then installing python package as follows will claim to succeed, but actually
fail to provide `pyarrow.lib` (`python3 -c 'import pyarrow.lib'` will fail)
```
cd ~/src/pyarrow/python
pip install --user .
```
--
This message was sent by Atlassian Jira
(v8.3.4#803005)