MontrealTradingGroup / freqtrade

Simple High Frequency Trading Bot for crypto currencies
GNU General Public License v3.0
70 stars 61 forks source link

Please Help me #1

Open nazimbeyy opened 5 years ago

nazimbeyy commented 5 years ago

Hi

What should I do for below error?

(.env) defno@defno-VB:~/freqtrade$ pip3 install -r requirements.txt ERROR: Double requirement given: python-rapidjson==0.6.3 (from -r requirements.txt (line 27)) (already in python-rapidjson (from -r requirements.txt (line 18)), name='python-rapidjson')

logicfirm commented 5 years ago

I had the same issue. Look in the freqtrade folder. There is a file called requirements.txt

Within that file, I commented out the line: python-rapidjson

I replaced "python-rapidjson" with "# python-rapidjson"

Save the file and then rerun the command: ./setup.sh --install

roberto-co commented 4 years ago

I tried this but it wasn't a fix...technically because in the setup.sh when it does a hard reset it does a pull again of the develop branch and it overwrites your commented out line with the uncommented out.

I think we should update the repo here on github so when it does a hard reset when you do the install it doesnt overwrite.

These are the lines im referring to that force the overwrite of your fix:

echo "- Hard resetting of 'develop' branch." git reset --hard origin/develop