Removing URL prefix for local URLs in blog posts

This commit is contained in:
Brandon Rozek 2022-12-18 12:25:45 -05:00
parent b02794d677
commit 6dc8bfbb89
No known key found for this signature in database
GPG key ID: 26E457DA82C9F480
21 changed files with 23 additions and 23 deletions

View file

@ -11,7 +11,7 @@ I ran into an issue with PyMC3 where it was expecting a certain symbol that Pyth
Exception: Compilation failed (return status=1): /usr/bin/ld: /home/rozek/.pyenv/versions/3.8.2/lib/libpython3.8.a(floatobject.o): relocation R_X86_64_PC32 against symbol `PyFloat_Type' can not be used when making a shared object; recompile with -fPIC. /usr/bin/ld: final link failed: bad value. collect2: error: ld returned 1 exit status.
```
Since I use [`pyenv`](https://brandonrozek.com/blog/pyenv/) for Python version management, it turned out that I only needed to modify the `CFLAGS` variable to get this working
Since I use [`pyenv`](/blog/pyenv/) for Python version management, it turned out that I only needed to modify the `CFLAGS` variable to get this working
```bash
CFLAGS="-fPIC" pyenv install 3.8.2