Anaconda on Windows Terminal Following the previous ** "ROS on Windows Terminal" **, this time it is "Anaconda on Windows Terminal".
setting.json Run Windows Terminal as an administrator and select setting from +. Then setting.json will open, so
{
"acrylicOpacity": 1.0,
"closeOnExit": true,
"colorScheme": "Campbell",
"commandline": "cmd.exe /k C:\\Users\\username\\Anaconda3\\Scripts\\activate.bat",
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "consolas",
"fontSize": 14,
"guid": "{xxx}",
"historySize": 9001,
"name": "Anaconda",
"padding": "0, 0, 0, 0",
"snapOnInput": true,
"startingDirectory": "%HOME%",
"tabTitle": "Anaconda",
"useAcrylic": true,
"icon": "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png "
}
--Personalize your username --Check if the location of the Anaconda directory is correct --Change of "starting Directory"
Since there are many images and it is easy to understand, it is in English, but if you do not understand herePlease refer to.
I made a lot
conda activate env1
Now you can change the virtual environment
Recommended Posts