Open lennart-g opened 1 year ago
Thank you!! just ran into this problem and used your solution which worked for iced_aw but now have run into the same problem with aHash, did you also? or has it been yoinked since you installed.
I only had problems with iced_aw
back then, but the provided packages might have changed in the meantime. Maybe consider sharing your error message, it might contain useful information on how to fix your problem.
Hi, I am new to Rust (and to ENSnano) and wanted to run it on Linux which sadly does not come with an executable.
I tried building it as described in the README but failed with the following output:
Looking at https://docs.rs/iced_aw/0.2.0/iced_aw/index.html, the required version is apparently no longer available. I tried editing
ensnano-gui/Cargo.toml
andensnano-organizer/Cargo.toml
to 0.7.0 (and in another attempt to 0.5.2) which both did not compile.What ultimately allowed me to build and run ENSnano was to clone
iced_aw
, checkout version 0.2.0 andcargo build --release
. I then updated the entries foriced_raw
inensnano-gui/Cargo.toml
toiced_aw = { path="/path/to/iced_aw", features = ["tab_bar"]}
and inensnano-organizer/Cargo.toml
toiced_aw = { path="/path/to/iced_aw", features=["icons", "icon_text"] }
.Maybe this will be useful to others. Please let me know if this approach is flawed and what is considered the better way to build ENSnano on Linux.