Techie-Tech Posted December 11, 2024 Posted December 11, 2024 Hi all, I'm tearing my hair out with Python and wondered if any of you could help. I have rolled out a new install of 3.13 and it seems to install fine, but I want to know how to uninstall previous installs as part of the process of a new install of Python. Also, how do you add libraries etc. It just seems a complete headache!
Techie-Tech Posted December 12, 2024 Author Posted December 12, 2024 how are you deploying it? Hi there, Ideally via GPO. Thanks
dmj Posted December 12, 2024 Posted December 12, 2024 Just delete them with the installation script and deploy that witht he GPO. Pyenv is my goto managing python installs https://github.com/pyenv/pyenv
Techie-Tech Posted December 12, 2024 Author Posted December 12, 2024 Just delete them with the installation script and deploy that witht he GPO. Pyenv is my goto managing python installs https://github.com/pyenv/pyenv Thanks for the link, but I wouldn't even know where to start with that.
dmj Posted December 12, 2024 Posted December 12, 2024 Thanks for the link, but I wouldn't even know where to start with that. Sorry, it's not available on windows - I just assumed it would be for some reason. Pyenv does not officially support Windows and does not work in Windows outside the Windows Subsystem for Linux. Moreover, even there, the Pythons it installs are not native Windows versions but rather Linux versions running in a virtual machine -- so you won't get Windows-specific functionality. 1
mavhc Posted December 12, 2024 Posted December 12, 2024 I'd probably just learn to script it, you'll have to be uninstalling old versions and pip installing and updating things anyway. Generally if run elevated things will install for all users
Techie-Tech Posted December 12, 2024 Author Posted December 12, 2024 I'd probably just learn to script it, you'll have to be uninstalling old versions and pip installing and updating things anyway. Generally if run elevated things will install for all users Hi, This is what I need assistance with. I just find the whole Python install and uninstall, hell on earth. lol
mavhc Posted December 12, 2024 Posted December 12, 2024 lots of examples, eg https://stackoverflow.com/questions/45825618/downloading-and-installing-python-via-a-batch-file
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now