Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # CHEAT SHEET | |
| # https://docs.conda.io/projects/conda/en/4.6.0/_downloads/52a95608c49671267e40c689e0bc00ca/conda-cheatsheet.pdf | |
| # Get a list of all my environments, active environment is shown with * | |
| conda env list | |
| # Create an environment with Python | |
| conda create --name py39 python=3.9 ipykernel | |
| # Add environment to Jupyter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo OFF | |
| rem How to run a Python script in a given conda environment from a batch file. | |
| rem It doesn't require: | |
| rem - conda to be in the PATH | |
| rem - cmd.exe to be initialized with conda init | |
| rem Define here the path to your conda installation | |
| set CONDAPATH=C:\ProgramData\Miniconda3 | |
| rem Define here the name of the environment |