-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- add troubleshooting in case msgpack is no up to date - add the flag `--upgrade` to `pip3`
- Loading branch information
1 parent
cb95fc2
commit 609a6bc
Showing
1 changed file
with
16 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,11 +47,11 @@ AlgoNim uses the following Python3 modules: | |
|
||
so you need to install them (if not already present): | ||
|
||
``` | ||
$ pip3 install msgpack | ||
$ pip3 install docopt | ||
$ pip3 install algosdk | ||
$ pip3 install pyteal | ||
```bash | ||
$ pip3 install --upgrade msgpack | ||
$ pip3 install --upgrade docopt | ||
$ pip3 install --upgrade algosdk | ||
$ pip3 install --upgrade pyteal | ||
``` | ||
|
||
### Step 2 - Environment setting | ||
|
@@ -217,6 +217,17 @@ If one of the players does not act for long time the Bet Escrows countdown condi | |
5. Implementing a "Multi-heaps" variant; | ||
6. Implementing a "Championship" mode (2 out of 3 matches). | ||
|
||
## Troubleshooting | ||
|
||
### Issue with `KeyError: 'microalgo_bet_amount` | ||
|
||
This issue arises if you do not use the latest version of `msgpack`. | ||
`msgpack` version 1.0.0 is needed. | ||
Run: | ||
```bash | ||
$ pip3 install --upgrade msgpack | ||
``` | ||
|
||
## Contact | ||
For any issue, improvement proposal or comment please reach me out at: [email protected] | ||
|