Skip to content

Commit 7fbacb4

Browse files
authored
fixing broken Python3 / machine68k & amitools installation commands
when upgrading my Debian/WSL2 system, I found out that the regular method of using pipx only works on Ubuntu, the new method is tested and works on both systems.
1 parent 8f1a976 commit 7fbacb4

1 file changed

Lines changed: 3 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ mkdir ~/FictionTools
4141
The Puny BuildTools require some dependencies. Install these via a single command:
4242

4343
```
44-
sudo apt update && sudo apt install frotz cpmtools dosfstools mtools git ruby imagemagick zip pipx
44+
sudo apt update && sudo apt install frotz cpmtools dosfstools mtools git ruby imagemagick zip
4545
```
4646

4747
When prompted to install additional dependencies, type `Y` to confirm. Switch to the folder you created and use Git to load the newest version from GitHub:
@@ -127,15 +127,13 @@ end
127127
For making the Amiga target work, you need to install the `amitools` Python package. But first install its dependencies:
128128

129129
```
130-
pipx install cython && pipx install git+https://github.com/cnvogelg/machine68k.git
130+
pip3 install cython --break-system-packages && pip3 install -U git+https://github.com/cnvogelg/machine68k.git --break-system-packages
131131
```
132132

133-
You might get a notification that no package is associated with `machine68k`, which you can ignore.
134-
135133
Now install `amitools`:
136134

137135
```
138-
pipx install git+https://github.com/cnvogelg/amitools.git
136+
pip3 install -U git+https://github.com/cnvogelg/amitools.git --break-system-packages
139137
```
140138

141139
One final step remains: providing the Puny BuildTools with the path to your PunyInform installation. In case you haven't installed PunyInform yet, do so now. You'll find it [here](https://github.com/johanberntsson/PunyInform).

0 commit comments

Comments
 (0)