Thiago Franco de Moraes
Thiago Franco de Moraes
You need to use `mach-nix.mkPythonShell`: ```nix let mach-nix = import (builtins.fetchGit { url = "https://github.com/DavHau/mach-nix/"; # place version number with the latest one from the github releases page ref =...
Interesting, you first `shell.nix` worked for me, even without `ignoreCollisions = true`.
It uses a convolutional neural network based on [U-Net](https://en.wikipedia.org/wiki/U-Net). The code to this network is [here](https://github.com/iitzco/deepbrain/blob/dbeff0ea67fb12317e62c9d957e902b230fa8bdf/deepbrain/train/extractor/train.py#L11). This network was trained with already segmented brain images ( CC359 dataset, NFBS dataset...
The only package that uses wxgtk-gtk2 that I found is audacity-gtk2, but audacity-gtk3 works too. If there isn't any problem, I think it's better to remove audacity-gtk2 and remove wxgtk-gtk2.
I removed the gtk2 from wxwidgets 3.2
@IPL and @JanzenMark see this https://replicate.com/blog/run-stable-diffusion-on-m1-mac
I deactivated network here (Fedora 40 in Gnome) using NetworkManager GUI but you can deactivate using Networkmanager cli: ``` nmcli connection down enp4s0 ``` Replace `enp4s0` with device.
@scaramallion is it not possible to install on `conda` using `pip`? I never used `conda`.
I tested on Windows when I submitted the PR to use the Github CI to generate the Wheels. It's running on Windows, but registration and other parts were not running,...
I run this command to create the executable: ``` PYAPP_PROJECT_PATH="$PWD/dist/bioscaffolds-0.1.0.post213.dev0+8e76bb1-py3-none-any.whl" PYAPP_EXEC_MODULE="BioScaffolds" PYAPP_PROJECT_NAME="BioScaffolds" PYAPP_PROJECT_VERSION="0.1.0.post216.dev0+3d0ad9c" PYAPP_DISTRIBUTION_EMBED=1 PYAPP_PROJECT_DEPENDENCY_FILE="$PWD/requirements.txt" PYAPP_FULL_ISOLATION=1 PYAPP_IS_GUI=1 cargo install pyapp --force --root dist ``` Then I disconnected my PC and...