cosme12 / SimpleCoin

Just a really simple, insecure and incomplete implementation of a blockchain for a cryptocurrency made in Python as educational material. In other words, a simple Bitcoin clone.
http://copitosystem.com
MIT License
1.78k stars 397 forks source link

requirements.txt Installation command does not work #10

Closed hernanrz closed 6 years ago

hernanrz commented 6 years ago

The readme suggests running the following command to install the project dependencies

pip install requirements.txt

But doing that only returns the following error:

$ pip install requirements.txt
Collecting requirements.txt
  Could not find a version that satisfies the requirement requirements.txt (from versions: )
No matching distribution found for requirements.txt

A solution I found for this was changing the command to the following

pip install `cat requirements.txt`

And then it worked fine, perhaps the readme should be updated?

cosme12 commented 6 years ago

Oh, you are right. The proper way is pip install -r requirements.txt

nobody5050 commented 5 years ago

Typing to be able to come back