919 questions
1
vote
1
answer
44
views
Poetry Install broken, ModuleNotFoundError but Module is installed. MacOS
After cloning and setting up my repo I use a poetry install
When running the code, I see
ModuleNotFoundError: No module named 'loguru'
The package is there however:
poetry add loguru
The following ...
0
votes
1
answer
29
views
eclipse - pydev - pyenv: mixing up python versions in debug mode
I used to work with Python 3.8.10. Now I additionally installed Python 3.13.2 via pyenv. Both versions are working when I call them in a terminal.
In Eclipse I generated a pydev project. In it there ...
0
votes
0
answers
22
views
pyenv generates huge PYENV_HOOK_PATH / PATH and passes it to execve as **env returning Arg list too long
Using pyenv to build old Android source using Python 2.7 on Ubuntu 24.04, pyenv results in: /home/user/.pyenv/libexec/pyenv: line 138: /home/user/.pyenv/libexec/pyenv-exec: Argument list too long (...
1
vote
0
answers
42
views
Failed Building Wheel for Scikit-fmm
noob here. I am currently trying to run this project: https://github.com/katsuma-inoue/soft_skeleton_solver
I was able to install all the listed packages, except scikit-fmm which keeps failing, with ...
0
votes
0
answers
42
views
Trouble installing pyenv with brew on mac due to openssl version
Has anyone ever been able to install the most recent version of pyenv on their computer? I just updated my python to 3.13.2. I tried through brew and run into this issue:
==> Installing ...
1
vote
1
answer
41
views
Python Version Management with Pyenv on MacBook Pro
I'm using pyenv to manage Python versions on my MacBook Pro. I have a question about how pyenv handles shim paths for each version.
I've installed different Python versions using pyenv.
pyenv ...
0
votes
0
answers
91
views
Can I use uv to replace Pyenv for my JavaScript project that depends on node-gyp?
I have a Node.js project that depends on node-canvas, which in turn depends on node-gyp. If I start with a fresh clone of my project and try to install my project dependencies from npm using the yarn ...
1
vote
1
answer
220
views
Build error when installing python with pyenv on MacOS (ld: symbol(s) not found for architecture arm64)
I cannot install any version of pyenv. When I type
pyenv install 3.12.4
I always get the message:
python-build: use openssl@3 from homebrew
python-build: use readline from homebrew
Downloading Python-...
1
vote
2
answers
259
views
pyenv BUILD FAILED on macOS 15.1
I am running into BUILD FAILED Error (OS X 15.1 using python-build 2.5.1) when attempting to install python via pyenv install 3.12.8
bash-3.2$ pyenv install 3.12.8
python-build: use openssl@3 from ...
0
votes
0
answers
66
views
VS Code no longer can find Python path used by pyenv
I have been using VS Code for Python development on Windows 10 for years. For some time, I have been using pyenv-win to manage installed Python versions in Windows. Once I've configured the version of ...
0
votes
0
answers
132
views
pyenv(1): OSError: [Errno 13] Permission denied: '/usr/local/lib/python3.11'
On a fresh install of Fedora-41 with pyenv(1) setup as shown, when I execute user@fedora$ pyenv install 3.11.11, I receive the exception shown. I think this comes from the internal Python installation ...
0
votes
1
answer
216
views
Pyenv build failed when trying to install Python 3.10.15
I have pyenv setup on my Macbook Pro M2 2022 Sonoma 14.6, which was migrated from an Intel-based chip a long while back. I was able to install and run python v3.10.13 via pyenv no problem but when I ...
1
vote
1
answer
2k
views
Trying to install python 3.12.1 or 3.13.0
I am trying to install the new python version and am trying using pyenv. I keep getting this error.
pyenv install 3.13.0 -f
Downloading Python-3.13.0.tar.xz...
\-\> https://www.python.org/ftp/...
1
vote
0
answers
94
views
How to properly use poetry with different versions of python on windows?
I am trying to migrate our projects to using Poetry. What I want to achieve is when people open the project using PyCharm, it will automatically create the environment using Poetry and install ...
0
votes
0
answers
23
views
Building a cpython executable using pyenv suitable for debugging in Eclipse
There are instructions how to build a debug version of python using pyenv. There are two options on pyenv install that seem pertinent. The obvious one is -g, for a debug version. However, there is ...