You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jira@arrow.apache.org by "Leonard Lausen (Jira)" <ji...@apache.org> on 2020/12/09 23:27:00 UTC

[jira] [Created] (ARROW-10868) pip install --user fails to install lib

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)