21 May 2024 |
maxwell | I was trying to get a jupyter notebook setup following [this][https://nixos.wiki/wiki/Workgroup:DataScience] wiki page | 09:45:54 |
maxwell | I needed to use python 3.9+ preferably 3.11, which is whats provided by pkgs.python3. I there for dutifuly updated the top line so that it reads pythonPackages ? pkgs.python3Packages , but it seems that a number of packages used in this recipy are not avalible in python3, firstly was ipythonwebrtc , then also pythreejs , and jupyterlab-latex | 09:48:43 |
maxwell | This is problematic. I am looking for advice on how I should proceed | 09:48:57 |
| maxwell changed their display name from maxwell.gisborne to maxwell. | 09:51:53 |
| maxwell set a profile picture. | 09:52:54 |
Felix | Packaging them in Nix is an option | 10:06:19 |
22 May 2024 |
| NixOS Moderation Botchanged room power levels. | 15:26:05 |
| NixOS Moderation Botchanged room power levels. | 15:28:18 |
23 May 2024 |
| lazycaaat joined the room. | 10:58:15 |
24 May 2024 |
| Charlotte 🦝 (it/its) changed their profile picture. | 06:54:08 |
| Rusty joined the room. | 10:59:15 |
29 May 2024 |
| raitobezarius changed their display name from raitobezarius to raitobezarius (DECT: 7248). | 17:07:26 |
30 May 2024 |
| cyanlight joined the room. | 10:26:35 |
2 Jun 2024 |
| aloisw set a profile picture. | 18:01:46 |
| aloisw changed their profile picture. | 18:23:55 |
4 Jun 2024 |
| raitobezarius changed their display name from raitobezarius (DECT: 7248) to raitobezarius. | 11:14:58 |
5 Jun 2024 |
| J7 left the room. | 13:46:35 |
11 Jun 2024 |
| IPK left the room. | 19:49:58 |
19 Jun 2024 |
maupind | Any academics using NixOS as a method for reproducibility of analysis? I'm interested to see what your processes are and curious if there are any funding opportunities that can be used to develop Nix in this area | 21:31:03 |
jbedo | In reply to @maupind:matrix.org Any academics using NixOS as a method for reproducibility of analysis? I'm interested to see what your processes are and curious if there are any funding opportunities that can be used to develop Nix in this area i use nix extensively for reproducibility, not so much nixos | 21:54:31 |
jbedo | i mean i run it, but not on institute/university compute | 21:55:08 |
21 Jun 2024 |
| Wilhelm joined the room. | 09:15:55 |
22 Jun 2024 |
| Charlotte 🦝 (it/its) left the room. | 19:23:12 |
28 Jun 2024 |
benoitdr | Anyone interested to work with me on a derivation for llama-cpp-python ? I had a working solution a few months ago but it's not working anymore with the latest package version. | 12:09:12 |
benoitdr | Currently facing this problem :
"fatal error: nv/target: No such file or directory" | 12:53:42 |
29 Jun 2024 |
| maka_77x joined the room. | 00:48:44 |
30 Jun 2024 |
Bruno Rodrigues | has one of you packaged positron ? | 13:07:15 |
Bruno Rodrigues | * has one of you packaged positron ? https://github.com/posit-dev/positron/tree/main?tab=readme-ov-file#positron-- | 13:07:40 |
benoitdr | I'm making some progress, now I can build llama-cpp-python with cuda, but unfortunately at runtime, the python app doesn't see the GPU 😭 these lines from llama.cpp derivation caught my attention :
# It's necessary to consistently use backendStdenv when building with CUDA support,
# otherwise we get libstdc++ errors downstream.
# cuda imposes an upper bound on the gcc version, e.g. the latest gcc compatible with cudaPackages_11 is gcc11
effectiveStdenv = if cudaSupport then cudaPackages.backendStdenv else stdenv;
....
effectiveStdenv.mkDerivation (finalAttrs: {
....
in my case I'm not making a derivation but I'm building a python package using pkgs.python311.pkgs.buildPythonPackage could it be the reason why gpu/cuda is not used at runtime ?
| 20:15:11 |
SomeoneSerge (Ever OOMed by Element) |
not making a derivation b
buildPythonPackage is a wrapper around mkDerivation | 20:33:02 |