produvia / kryptos

Kryptos AI is a virtual investment assistant that manages your cryptocurrency portfolio
http://twitter.com/kryptos_ai
MIT License
48 stars 8 forks source link

Deployment problems #67

Closed bukosabino closed 6 years ago

bukosabino commented 6 years ago

Hi,

I have tried to deploy the project (master branch) with pipenv, but I have some problems with python2.7 and python3.6:

$ pipenv --python python3.6 install

An error occurred while installing bcolz==0.12.1! Will try again.
An error occurred while installing bottleneck==1.2.1! Will try again.
An error occurred while installing lru-dict==1.1.6! Will try again.
An error occurred while installing cytoolz==0.9.0.1! Will try again.
An error occurred while installing cyordereddict==1.0.0! Will try again.
An error occurred while installing enigma-catalyst==0.5.8! Will try again.
An error occurred while installing ta-lib==0.4.17! Will try again.

$ pipenv --python python2.7 install

Warning: Your Pipfile requires python_version 3.6, but you are using 2.7.12 (/home/b/.local/share/v/c/bin/python).

An error occurred while installing async-timeout==2.0.1! Will try again.
An error occurred while installing eth-rlp==0.1.0! Will try again.
An error occurred while installing eth-hash==0.1.2! Will try again.
An error occurred while installing websockets==4.0.1! Will try again.
An error occurred while installing hexbytes==0.1.0! Will try again.
An error occurred while installing multidict==4.2.0! Will try again.

However, I am able to deploy it with python3.5 without problems only a warning because of the line in Pipfile where python 3.6 version is required. Is it a real problem? Can I work with python3.5?

slavakurilyak commented 6 years ago

Kryptos works with Python 3, but it can also support Python 2.

If you are having issues with virtualenv environment, you can remove it using: $ pipenv --rm

If you want to use Python 2.7, change the Pipfile python_version to be 2.7. For example:

[requires]
python_version = "2.7"
bukosabino commented 6 years ago

I have deployed successfully the project in my macbook air using python 3.6.

Now I am playing with the platform :)