Compare commits
2 Commits
a9247ba1a5
...
2f219876ba
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2f219876ba | ||
|
|
f93614daf8 |
@@ -31,7 +31,9 @@ Used to enter the development shell. Be careful, as this will create a `.devenv`
|
|||||||
|
|
||||||
### venv
|
### venv
|
||||||
|
|
||||||
Activated with `.devenv/state/venv/bin/activate`. Used in VSCode for type hints, running, and debugging
|
`.devenv/state/venv/bin/python`
|
||||||
|
|
||||||
|
Used in VSCode for type hints, running, and debugging
|
||||||
|
|
||||||
### Jupyter
|
### Jupyter
|
||||||
|
|
||||||
|
|||||||
@@ -45,7 +45,7 @@
|
|||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
timeZone = "America/Chicago";
|
timeZone = "America/Chicago";
|
||||||
locale = "en_US.UTF-8";
|
locale = "en_US.UTF-8";
|
||||||
pythonVersion = "3.12.7";
|
pythonVersion = "3.11.10"; # This is largely irrelevant because uv will handle it
|
||||||
};
|
};
|
||||||
|
|
||||||
pkgs = args.nixpkgs.legacyPackages.${systemSettings.system};
|
pkgs = args.nixpkgs.legacyPackages.${systemSettings.system};
|
||||||
@@ -111,12 +111,9 @@
|
|||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
git
|
git
|
||||||
|
gdbm
|
||||||
(pkgs.python312.withPackages (python-pkgs: with python-pkgs; [
|
(pkgs.python312.withPackages (python-pkgs: with python-pkgs; [
|
||||||
pip
|
notebook # kinda hacky, but needed so that jupyter notebook has some shared library it needs
|
||||||
setuptools
|
|
||||||
wheel
|
|
||||||
notebook
|
|
||||||
rich
|
|
||||||
]))
|
]))
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user