Skip to content

Instantly share code, notes, and snippets.

@AlenkaF
Last active September 27, 2022 11:18
Show Gist options
  • Select an option

  • Save AlenkaF/bb12bbe2051db5854e10747e13ca5b91 to your computer and use it in GitHub Desktop.

Select an option

Save AlenkaF/bb12bbe2051db5854e10747e13ca5b91 to your computer and use it in GitHub Desktop.
Installing PyArrow without doing an inplace build without setting CONDA_DLL_SEARCH_MODIFICATION_ENABLE=1
(pyarrow-dev38) C:\Users\Alenka\repos\arrow\python>pip install -e .
Obtaining file:///C:/Users/Alenka/repos/arrow/python
Installing build dependencies ... done
Checking if build backend supports build_editable ... done
Getting requirements to build editable ... done
Preparing editable metadata (pyproject.toml) ... done
Requirement already satisfied: numpy>=1.16.6 in c:\users\alenka\anaconda3\envs\pyarrow-dev38\lib\site-packages (from pyarrow==10.0.0.dev169+gcbf0ec0d0.d20220927) (1.23.3)
Building wheels for collected packages: pyarrow
Building editable for pyarrow (pyproject.toml) ... done
Created wheel for pyarrow: filename=pyarrow-10.0.0.dev169+gcbf0ec0d0.d20220927-0.editable-cp38-cp38-win_amd64.whl size=26397 sha256=317b71a1b46c66253926260a1fc9c01919ff82fa3326a264956d187276c84b77
Stored in directory: C:\Users\Alenka\AppData\Local\Temp\pip-ephem-wheel-cache-muu3efk0\wheels\24\50\4a\0ca0024821f22081ea7e235cf4944e8b61d056b092ea321b7f
Successfully built pyarrow
Installing collected packages: pyarrow
Successfully installed pyarrow-10.0.0.dev169+gcbf0ec0d0.d20220927
(pyarrow-dev38) C:\Users\Alenka\repos\arrow\python>python
Python 3.8.13 | packaged by conda-forge | (default, Mar 25 2022, 05:59:45) [MSC v.1929 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyarrow
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Users\Alenka\repos\arrow\python\pyarrow\__init__.py", line 65, in <module>
import pyarrow.lib as _lib
ImportError: DLL load failed while importing lib: The specified module could not be found.
>>> quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment