docs: Fix typos, improve commands

This commit is contained in:
Tibo De Peuter 2024-04-16 17:14:00 +02:00
parent 2004278365
commit cf38cbb1a9
Signed by: tdpeuter
GPG key ID: 38297DE43F75FFE2
2 changed files with 8 additions and 8 deletions

View file

@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1712608508, "lastModified": 1712963716,
"narHash": "sha256-vMZ5603yU0wxgyQeHJryOI+O61yrX2AHwY6LOFyV1gM=", "narHash": "sha256-WKm9CvgCldeIVvRz87iOMi8CFVB1apJlkUT4GGvA0iM=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "4cba8b53da471aea2ab2b0c1f30a81e7c451f4b6", "rev": "cfd6b5fc90b15709b780a5a1619695a88505a176",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -9,7 +9,7 @@
You can enter the environment in your CLI with: You can enter the environment in your CLI with:
$ nix-develop -c bash -c "conda-shell -c 'conda activate <environment-name> && sh'" $ nix develop -c bash -c "conda-shell -c 'conda activate <environment-name> && sh'"
If you are using Pycharm, you can start up quickly by running: If you are using Pycharm, you can start up quickly by running:
@ -17,10 +17,10 @@
### Setup: ### ### Setup: ###
On your first run, enter conda using On your first run, install conda and set up your environment using
$ nix-develop -c bash -c "conda-shell -c 'conda-install'" $ nix develop -c bash -c "conda-shell -c 'conda-install'"
(conda-shell)$ conda env create --name <environment-name> --file /path/to/environment.yaml $ nix develop -c bash -c "conda-shell -c 'conda-env create --name <environment-name> --file /path/to/environment.yaml'"
''; '';
@ -40,7 +40,7 @@
conda conda
# You might want to add an IDE of your choice; # You might want to add an IDE of your choice;
# (jetbrains.plugins.addPlugins jetbrains.pycharm-professional [ "github-copilot" ]) (jetbrains.plugins.addPlugins jetbrains.pycharm-professional [ "github-copilot" ])
]; ];
}; };
}); });