Skip to content

Latest commit

 

History

History
48 lines (44 loc) · 3.32 KB

programming.md

File metadata and controls

48 lines (44 loc) · 3.32 KB

P1. Books, Tutorials, and References

P3. Environments

  • Anaconda and conda
    • Install a package: conda install package_to_install
    • Update Anaconda: conda update --all
    • Virtual environments
      • Create a virtual environment: conda create --name venv_name python
        • If you want specify version, add the version number such as python=3.6.
        • If you install other packages, add their names such as anaconda to include all anaconda packages
      • List all virtual environments: conda env list
      • Activate the virtual environment: conda activate venv_name
        • List all packages installed in the current virtual environment: conda list
      • Deactivate the current virtual environment: conda deactivate
      • Remove the virtual environment: conda env remove --name venv_name
  • Jupyter Notebook
  • Google Colaboratory (in short Colab)

C/C++

C1. Books, Tutorials, and References

Others