A bash script used to install the required stack for running Jesse on a fresh Ubuntu 18.04:
- Python >=
3.8 - PostgreSQL >=
11.2 - Redis >=
5 - ta-lib >=
0.4 - pip >=
19.3.0
Make sure your Ubuntu 18.04 is fresh:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/jesse-ai/stack-installer/master/ubuntu-18.04.sh)"Below packages are not required to run Jesse but are very useful:
sudo apt-get install -y zsh && sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"A must have for using Jesse on a remote server. It is used to keep the terminal sessions alive.
sudo apt-get install -y screenUsage example (maybe all the commands you need):
# create and attach to a new screen window
screen -S name_of_the_window
# list all open screens
screen -ls
# reattach to a previously opened window
screen -r name_of_the_window