@@ -56,8 +56,8 @@ $ ls -l /dev/ttyACM0
56
56
crw-rw---- 1 root uucp 166, 0 Jun 5 22:03 /dev/ttyACM0
57
57
```
58
58
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
61
61
62
62
```
63
63
$ sudo usermod -aG uucp thomas
@@ -109,17 +109,17 @@ things:
109
109
Powered by WebAssembly". That one is easily fixable via `pacman -S
110
110
wasmer`, thankfully.
111
111
* 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).
115
115
* sigh*
116
116
Turns out however, that ` pyenv ` is a thing which a allows you to easily
117
117
manage multiple python installations. Well, somewhat easily: after running
118
118
```
119
119
$ pyenv install 3.10 && pyenv local 3.10
120
120
```
121
121
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
123
123
mildly rediculous invocation:
124
124
```
125
125
$ pyenv exec pipenv run python run.py
0 commit comments