Open khipukamayuq opened 5 years ago
Thanks for the issue report. I believe it's panicking for lack of finding the system's terminfo database which could be missing from our documentation or setup. I'll try and repo the issue to verify shortly, but if that's the case, it might just be a matter of installing the ncurses-term
package.
I'm also experiencing this issue on Ubuntu 19.10. Any updates on this? @anowell
I had what looks like the same problem, with Rust panicking on every invocation of algo
I tried. Setting the TERM
environment variable to xterm
appears to have done the trick, though:
6:46 $ echo $TERM; algo ls
xterm-256color
thread 'main' panicked at 'called `Option::unwrap()` on a `None` value', /buildslave/rust-buildbot/slave/stable-dist-rustc-linux/build/src/libcore/option.rs:323
note: Run with `RUST_BACKTRACE=1` for a backtrace.
16:46 $ TERM=xterm algo ls
saintaardvark
Hi,
I'm on Ubuntu 18.10 using Terminator, z-shell w/ oh-my-zsh. New algorithmia-cli installation went smoothly, was able to setup auth without issue. Then
algo run
of tutorial and "hello world" resulted in Rust thread panic. Same result forls
,mkdir
; any command besidesauth
or--help
Ran rust's suggested backtrace and got:Found a github repo for a rust-buildbot like the above reference, but it's deprecated; couldn't be the same one as above? Either way, not sure how I broke this or how to tackle a fix. Thanks in advance for any help.