denosaurs / denosaurs/deno_python

Python packages not found if installed with venv

Open
#78 1 comment 0 reactions 0 assignees View on GitHub
bug
Dominant language
TypeScript
Stars
762
Forks
26
PR merge metrics
No merged PRs in 30d

Description

On mac os it works well with packages installed with `brew` but when using venv and packages installed with pip - it can't find it.

The `sys.path` is different when run with `python` and `bunpy`, the bunpy misses the venv installation dir

```
python

[
'/Users/alex/base/projects/ext_ts/math',
'/usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/lib/python312.zip',
'/usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/lib/python3.12',
'/usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/lib/python3.12/lib-dynload',
'/Applications/misc/python/lib/python3.12/site-packages'
]

bunpy (misses '/Applications/misc/python/lib/python3.12/site-packages' )

[
'/usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/lib/python312.zip',
'/usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/lib/python3.12',
'/usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/lib/python3.12/lib-dynload',
'/usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages'
]
```

P.S.

I also had to explicitly set `python` lib, by default it can't find it

```
export DENO_PYTHON_PATH=/usr/local/Cellar/python@3.12/3.12.4/Frameworks/Python.framework/Versions/3.12/lib/libpython3.12.dylib
```

Contributor guide

No contributing guide indexed for this repository

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.