――I want Python to do the boring things! (It has nothing to do with a certain book)
--Install Chocolatey --Install Anaconda
--Use Chocolatey to install, update, etc. with one command (click using GUI) --Packages can be installed in bulk with the config file even when moving to another environment ――I want you to get used to brew on mac
--Windows + x → a on the keyboard (PowerShell starts with administrator privileges) --Copy and paste the following command and enter (see also Official Site)
Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
--The config file used for migration can be easily output.
--If you want to start PowerShell with administrator privileges every time, you can skip it!
choco install ChocolateyGUI -y
--For details, the article here is easy to read. --It also describes how to put out the config file.
――In Windows, I feel the tendency to put this in. --Because packages such as pandas and jupyter are also included by default ――There is no particular deep reason
choco install anaconda3 -y
--Or search for ʻanaconda` in the chocolatey tab on the left from the Chocolatey GUI
--Double-click to select the desired package and click the install button at the bottom right
that's all. Thank you very much.
--From the knowledge that Windows was installed cleanly more than 10 times this year, I summarized it to make it a little easier next year. ――If Windows 10 is digitally activated, you can change the storage (physical) or perform a clean installation, so if you feel free to put it in and it breaks, use Media Creation Tool etc. to make it a clean environment and do it. I have a desire ――As mentioned in the above article, it is not as good as brew on mac, so please think about installing it a little if you get used to it. --Give the config file to the newcomer, read this and install it, if possible, I'm sorry ...
Recommended Posts