Sean Pedersen
Sean Pedersen
In progress!
I am not sure, I can follow your workaround. Here an example to clarify: - file src/a.py ``` import b import numpy as np print(b.bla()) ``` - file src/b.py ```...
You mean you can not detect which imports are third-party (pip) packages and which ones are local? Can't you just infer this from the local source file names? Obfuscate local...
Issue is still unresolved...
Same issue (drag and drop not working at all) on Arch Linux with obsidian-1.8.10-1-x86_64 and KanBan 2.0.51 -> ok works after reopening the board...
Ok thx, I did like so: ./src-tauri/pyproject.toml ``` [project] name = "digger-solo" version = "0.1.0" description = "Digger Solo - Search and Explore" requires-python = ">=3.11" dependencies = [ .......
I did not include ncvis as dependency in pyproject.toml... if I do: ``` LeMacMini@Mac-mini-von-The digger-solo % uv pip install \ --python="./src-tauri/pyembed/python/bin/python3" \ "numpy==1.26.1" "Cython==3.0.2" "pybind11==2.13.6" \ ./src-tauri Using Python 3.11.11...
Same issue here. tsnecuda.test() works but using a bigger dataset causes a crash. I monitored VRAM and it was not maxxed out. Error: ``` Loaded: (3039767, 128) Initializing cuda handles......
Ok simply using `conda install tsnecuda -c conda-forge` instead of the pip install fixed it for me...
I also tried running `pyoxidizer build` and got following output: With following pyoxidizer.bzl: ``` def make_exe(): dist = default_python_distribution() return dist.to_python_executable(name="hello") register_target("exe", make_exe, default=True) resolve_targets() ``` OUTPUT: ``` (pyapp) LeMacMini@Mac-mini-von-The...