CryptoSignal / Crypto-Signal

Github.com/CryptoSignal - Trading & Technical Analysis Bot - 4,100+ stars, 1,100+ forks
https://www.linkedin.com/in/AbenezerMamo
MIT License
4.9k stars 1.26k forks source link

problem install "Crypto-Signal" with Python #434

Open shehnipoor opened 3 years ago

shehnipoor commented 3 years ago

How do I install "Crypto-Signal" with Python?

Alorse commented 3 years ago

Hi, what do you mean?

Those are the instructions with Docker

Be sure you have git installed in your system.

Clone this repo git clone https://github.com/CryptoSignal/crypto-signal.git

Enter to cripto-signal folder cd crypto-signal

Switch to develop branch git checkout develop

Create a config.yml file and put it into "app" folder.

Build your own Docker image, for example, docker build -t dev/crypto-signals:latest .

For testing and debugging run docker with "-t" option docker run --rm -ti -v $PWD/app:/app dev/crypto-signals:latest

For production run in daemon mode using "-d" option docker run --rm -di -v $PWD/app:/app dev/crypto-signals:latest