top | item 34412846

(no title)

dugab | 3 years ago

I have no issues working with Docker/Python on a M1 Macbooks. Docker Desktop/Colima does the job well, and most of the images I use are available on arm. Running amd64 images is slower, but works well.

For Python, Python itself is rarely the problem, but more often some older libraries that don't have wheels for M1 Mac, or incompatibilities. Upgrading your dependencies, if it's an option, is often enough.

Asdf + PDM are also nice tools to work with multiple projects/Py versions easily.

discuss

order

hk1337|3 years ago

> Asdf + PDM are also nice tools to work with multiple projects/Py versions easily.

I haven't heard of either of these but they seem interesting. I'll look into them. Thanks.

*EDIT* Oh, man! I've just been using just pip like a muggle, until now.