Skip to content

Commit 466bd71

Browse files
committed
[ tildagon1 ] Minor edits
1 parent 64e919d commit 466bd71

File tree

1 file changed

+6
-6
lines changed
  • content/en/post/first-go-at-tildagon-development

1 file changed

+6
-6
lines changed

content/en/post/first-go-at-tildagon-development/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ $ ls -l /dev/ttyACM0
5656
crw-rw---- 1 root uucp 166, 0 Jun 5 22:03 /dev/ttyACM0
5757
```
5858

59-
Aha! That probably explains things: I am not in the `uucp` group, that might be
60-
a problem. And indeed, with a
59+
Aha! That probably explains things: I am not in the `uucp` group, which might be
60+
a problem. One
6161

6262
```
6363
$ sudo usermod -aG uucp thomas
@@ -109,17 +109,17 @@ things:
109109
Powered by WebAssembly". That one is easily fixable via `pacman -S
110110
wasmer`, thankfully.
111111
* Unfortunately `pipenv` does not and will never support version ranges
112-
([#1050](https://github.com/pypa/pipenv/issues/1050)), and `wasmer` wheels
113-
currently only build for up to `python3.10` (Arch ships `3.12.3` at the time
114-
of writing).
112+
([pipenv#1050](https://github.com/pypa/pipenv/issues/1050)), and `wasmer`
113+
wheels currently only build for up to `python3.10` (Arch ships `3.12.3` at
114+
the time of writing).
115115
*sigh*
116116
Turns out however, that `pyenv` is a thing which a allows you to easily
117117
manage multiple python installations. Well, somewhat easily: after running
118118
```
119119
$ pyenv install 3.10 && pyenv local 3.10
120120
```
121121
you then use the configured version by wrapping the command in `pyenv exec`.
122-
Not exactly seamless, but better than nothing I guess, but does lead to this
122+
Not exactly seamless, but better than nothing I guess. It does lead to this
123123
mildly rediculous invocation:
124124
```
125125
$ pyenv exec pipenv run python run.py

0 commit comments

Comments
 (0)