-
-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updates to Installation Guide - Common Issues Getting Started (#405)
* Update README.md add python3 instead of python * Create problem-solving.md * Update installation.md including link to problem-solving * Add general debugging doc * Update installation.md
- Loading branch information
1 parent
a9de56c
commit 0b0458c
Showing
4 changed files
with
47 additions
and
4 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
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
## **Common error messages and their solutions:** | ||
|
||
1. If you receive this error: **ImportError: cannot import name 'login_not_required' from 'login_required** <br /> You may be missing some django middleware. | ||
|
||
To fix this: | ||
```shell | ||
pip install django-login-required-middleware | ||
``` | ||
|
||
2. If you receive this error: **No module named 'forex_python'** | ||
|
||
Do this: | ||
```shell | ||
pip install forex_python | ||
``` | ||
|
||
3. To fix several **boto3** "extension name here" **not found errors** | ||
|
||
Do the following: | ||
```shell | ||
pip install mypy_boto3_iam | ||
|
||
pip install mypy_boto3_scheduler | ||
|
||
pip install mypy_boto3_events | ||
|
||
pip install mypy_boto3_stepfunctions | ||
``` |
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
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