Python 3.11
docs.python.org
Python 3.11
1–10 of 156 posts
Re: Python 3.11
#2According to PEP-619[1], Python 3.10 release expected tomorrow, so no wonder work started on 3.11...
Re: Python 3.11
#3This is just a change log its better to link to the 3.11 what’s new: https://docs.python.org/3.11/whatsnew/3.11.html
Re: Python 3.11
#4Just 3 more updates until Pithon 3.14
Re: Python 3.11
#5I'm waiting for Python for Workgroups 3.11
Re: Python 3.11
#6just spent about 4 hrs getting Python 2 and pip setup on my Mac. Any time I have the misfortune of needing to use python I get cold sweats at the thought of the environment stuff.
Why is this still such a massive problem?
Re: Python 3.11
#7just spent about 4 hrs getting Python 2 and pip setup on my Mac. Any time I have the misfortune of needing to use python I get cold sweats at the thought of the environment stuff. Why is this still such a massive problem?
No such problems on Linux, which is free and open-source. I think 'open-source' is the key.
Re: Python 3.11
#8just spent about 4 hrs getting Python 2 and pip setup on my Mac. Any time I have the misfortune of needing to use python I get cold sweats at the thought of the environment stuff. Why is this still such a massive problem?
If you use pyenv, it shouldn't be that difficult.
Re: Python 3.11
#9just spent about 4 hrs getting Python 2 and pip setup on my Mac. Any time I have the misfortune of needing to use python I get cold sweats at the thought of the environment stuff. Why is this still such a massive problem?
Interesting, I don’t use Python much anymore, but my project setup was always something like:
virtualenv -p interpreter venv
source venv/bin/activate
pip install . . .
These days, I just use nixRe: Python 3.11
#10[deleted]