Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

77%
+5 −0
Q&A Reinstall old Python libraries after update

Recently, Python updated from 3.11 to 3.12 and now all my libraries are gone. Actually they're in the old 3.11 site-packages, but now that python points to 3.12 those are not active. Every time I r...

3 answers  ·  posted 5mo ago by matthewsnyder‭  ·  last activity 5mo ago by Karl Knechtel‭

Question python-3
#2: Nominated for promotion by user avatar Alexei‭ · 2024-06-02T04:36:11Z (5 months ago)
#1: Initial revision by user avatar matthewsnyder‭ · 2024-05-31T18:16:01Z (5 months ago)
Reinstall old Python libraries after update
Recently, Python updated from 3.11 to 3.12 and now all my libraries are gone. Actually they're in the old 3.11 site-packages, but now that `python` points to 3.12 those are not active. Every time I run a program I'm used to, I get a bunch of import errors, and have to reinstall the dependencies.

I know how to do it, but it's tedious. Isn't there a way to carry over the 3rd party packages that were installed on the old Python, but not "internal" stuff like `setuptools` and `pip`? Those are usually part of the Python distribution and I don't want nor need to mess with them.