-
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.
Formatting and Dead Links Cleanup (#16)
- cleaned up some small formatting stuff - removed some dead links to packages that don't exist any more
- Loading branch information
Showing
5 changed files
with
40 additions
and
56 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
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 |
---|---|---|
@@ -1,23 +1,29 @@ | ||
So, there are some complications when upgrading to python3. | ||
|
||
1. ### Bad Magic Number | ||
|
||
```bash | ||
ImportError: bad magic number in... | ||
``` | ||
|
||
- ##### Nix based | ||
|
||
``` | ||
find /path/to/SickChill -name '*.pyc' -delete | ||
systemctl restart sickchill # or however you restart your service | ||
``` | ||
- ##### Windows | ||
_admin prompt_ | ||
```bash | ||
net stop sickchill | ||
cd C:\SickChill\SickChill | ||
del /S *.pyc | ||
net start sickchill | ||
``` | ||
### Bad Magic Number | ||
|
||
```bash | ||
ImportError: bad magic number in... | ||
``` | ||
|
||
- ##### Nix (Linux/Unix) based | ||
|
||
``` | ||
find /path/to/SickChill -name '*.pyc' -delete | ||
systemctl restart sickchill # or however you restart your service | ||
``` | ||
|
||
- ##### Windows | ||
|
||
_run command prompt as an administrator_ | ||
|
||
(Click on Start button -> type "cmd" -> right-click on "Command Prompt" -> click "Run as administrator") | ||
|
||
At the command prompt: | ||
|
||
```bash | ||
net stop sickchill | ||
cd C:\SickChill\SickChill | ||
del /S *.pyc | ||
net start sickchill | ||
``` |
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