[PROBLEM] problem during pip install
Describe the bug
While attempting to install the “self-operating-computer” package using the command “python3 -m pip install self-operating-computer”, I encounter an error related to the numpy version 1.26.1. Despite successfully installing various other versions, the 1.26.1 version consistently fails during installation, causing errors every time.
Steps to Reproduce
- just running the command.
Screenshots
Additional context
Running on macOS Sequoia, on a M3 Macbook
I experienced the same problem.
any update on this issue? facing the same one here
Same as well, getting the same issue - macOS Sequoia v15.1
If I use the "--no-deps" flag I can bypass this an get it installed successfully, but then then the "operate" command gives me this error ModuleNotFoundError: No module named 'prompt_toolkit'
Tried again on windows PC using WinGM Terminal and got the same exact issue :/ If there is anything I can do to help debug let me know!
To solve this you will need to use Python 12, it happens if you are using Python 13.
Using pip to install doesn't work for me too, but I feel like mine is a different error so I made a new issue
you need to use a downgraded version of python3. I used 3.11.0
I have both tried installing 3.12 and 3.11 versions and it still says the same for me.
I have both tried installing 3.12 and 3.11 versions and it still says the same for me.
3.12 worked for a while for me until I got hut with a dependency error that wouldn't go away even in venvs. Just get pyenv or pyenv-win and try different python versions until this is fixed, 3.9 worked for me (even though some deps couldn't use it).
Ironic part is that this just randomly happens (afaik), so pretty hard to find the problem.
I have both tried installing 3.12 and 3.11 versions and it still says the same for me.
you need to setup your global version to 3.11.0 using pyenv. Also, make sure that your python venv is using 3.11.0 because if you made the venv before setting 3.11.0 to global, then the venv will be on a different version. So I would suggest setting your global python version to 3.11.0 using pyenv, and the creating a new python venv to install the program and install the requirements inside of.
I have both tried installing 3.12 and 3.11 versions and it still says the same for me.
you need to setup your global version to 3.11.0 using pyenv. Also, make sure that your python venv is using 3.11.0 because if you made the venv before setting 3.11.0 to global, then the venv will be on a different version. So I would suggest setting your global python version to 3.11.0 using pyenv, and the creating a new python venv to install the program and install the requirements inside of.
I will say that your response was the solution to the problem. Now I am on next issue #166. Getting closer to get it to work though 👍